mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
So that's how you're meant to do it.
This commit is contained in:
parent
f60bac0e0e
commit
0d305463fc
1 changed files with 7 additions and 1 deletions
|
@ -70,7 +70,13 @@ public class WorldGenerator extends PlotGenerator {
|
|||
}
|
||||
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
|
||||
* DefaultPlotWorld class which comes with PlotSquared
|
||||
|
|
Loading…
Reference in a new issue