Fixed spawn eggs if natural spawning is disabled

This commit is contained in:
boy0001 2015-02-28 12:06:48 +11:00
parent a43cf8833c
commit c408a82730
2 changed files with 3 additions and 3 deletions

View File

@ -200,7 +200,9 @@ public class HybridGen extends PlotGenerator {
public List<BlockPopulator> getPopulators(final World world) {
// disabling spawning for this world
if (!this.plotworld.MOB_SPAWNING) {
world.setSpawnFlags(false, false);
if (!this.plotworld.SPAWN_EGGS) {
world.setSpawnFlags(false, false);
}
world.setAmbientSpawnLimit(0);
world.setAnimalSpawnLimit(0);
world.setMonsterSpawnLimit(0);

View File

@ -43,7 +43,6 @@ public abstract class SquarePlotManager extends GridPlotManager {
final int size = dpw.PLOT_WIDTH + dpw.ROAD_WIDTH;
int idx;
int idz;
if (x < 0) {
idx = (x/size);
x = size + (x % size);
@ -86,7 +85,6 @@ public abstract class SquarePlotManager extends GridPlotManager {
int dz;
int rx;
int rz;
if (x < 0) {
dx = (x/size);
rx = size + (x % size);