Skip to content

Commit

Permalink
Sea
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriM1 committed Sep 19, 2023
1 parent f8e6b89 commit be1581e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>cn.wode490390.nukkit</groupId>
<artifactId>vipop</artifactId>
<packaging>jar</packaging>
<version>1.0.2-IGN.2</version>
<version>1.0.2-IGN.3</version>
<name>Classic Village Populator</name>
<description>This is a plugin that implements the old village feature for Nukkit servers</description>
<url>http://wode490390.cn/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit be1581e

Please sign in to comment.