Skip to content

Commit a33d0b1

Browse files
committed
Release 1.0.2
1 parent f8f2371 commit a33d0b1

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>cn.wode490390.nukkit</groupId>
88
<artifactId>vipop</artifactId>
99
<packaging>jar</packaging>
10-
<version>1.0.1</version>
10+
<version>1.0.2</version>
1111
<name>Classic Village Populator</name>
1212
<description>This is a plugin that implements the old village feature for Nukkit servers</description>
1313
<url>http://wode490390.cn/</url>
@@ -90,7 +90,7 @@
9090
<plugin>
9191
<groupId>pl.project13.maven</groupId>
9292
<artifactId>git-commit-id-plugin</artifactId>
93-
<version>4.0.0</version>
93+
<version>4.0.2</version>
9494
<executions>
9595
<execution>
9696
<id>get-the-git-infos</id>

src/main/java/cn/wode490390/nukkit/vipop/structure/VillagePieces.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ protected void spawnVillagers(ChunkManager level, BoundingBox boundingBox, int x
360360
CompoundTag nbt = Entity.getDefaultNBT(new Vector3(worldX + .5, worldY, worldZ + .5));
361361

362362
if (this.isZombieVillage) {
363-
nbt.putString("id", "ZombieVillagerV1")
363+
nbt.putString("id", "ZombieVillager") // ZombieVillagerV1
364364
.putInt("Profession", this.getVillagerProfession(count, EntityVillagerV1.PROFESSION_FARMER));
365365
} else {
366-
nbt.putString("id", "VillagerV1")
366+
nbt.putString("id", "Villager") // VillagerV1
367367
.putInt("Profession", this.getVillagerProfession(count, ThreadLocalRandom.current().nextInt(6)));
368368
}
369369

0 commit comments

Comments
 (0)