diff --git a/pom.xml b/pom.xml index 31d0837..cf3882d 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ cn.wode490390.nukkit vipop jar - 1.0.2-IGN.2 + 1.0.2-IGN.3 Classic Village Populator This is a plugin that implements the old village feature for Nukkit servers http://wode490390.cn/ diff --git a/src/main/java/cn/wode490390/nukkit/vipop/ClassicVillagePlugin.java b/src/main/java/cn/wode490390/nukkit/vipop/ClassicVillagePlugin.java index 8ec62a6..64e3755 100644 --- a/src/main/java/cn/wode490390/nukkit/vipop/ClassicVillagePlugin.java +++ b/src/main/java/cn/wode490390/nukkit/vipop/ClassicVillagePlugin.java @@ -53,7 +53,7 @@ public void onLevelLoad(LevelLoadEvent event) { Level level = event.getLevel(); Generator generator = level.getGenerator(); if (generator.getId() != Generator.TYPE_FLAT && generator.getDimension() == Level.DIMENSION_OVERWORLD) { - populators.add(new PopulatorVillage(generator.getClass() == Normal.class)); + populators.add(new PopulatorVillage(/*generator.getClass() == Normal.class*/ false)); } this.populators.put(level, populators); }