So that's how you're meant to do it.

This commit is contained in:
boy0001 2014-10-29 19:15:58 +11:00
parent f60bac0e0e
commit 0d305463fc

View File

@ -70,7 +70,13 @@ public class WorldGenerator extends PlotGenerator {
} }
return manager; return manager;
} }
/**
* Allow spawning everywhere (up to server owners to keep it safe)
*/
@Override
public boolean canSpawn(World world, int x, int z) {
return true;
}
/** /**
* Get a new plotworld class For square plots you can use the * Get a new plotworld class For square plots you can use the
* DefaultPlotWorld class which comes with PlotSquared * DefaultPlotWorld class which comes with PlotSquared