Mappings Update

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2018-12-26 08:00:00 +11:00
parent 239b2828db
commit d7e312278d
120 changed files with 878 additions and 1619 deletions

View File

@@ -55,9 +55,9 @@ public class CraftVillagerZombie extends CraftZombie implements ZombieVillager {
public void setConversionTime(int time) {
if (time < 0) {
getHandle().conversionTime = -1;
getHandle().getDataWatcher().set(EntityZombieVillager.a, false);
getHandle().getDataWatcher().set(EntityZombieVillager.CONVERTING, false);
} else {
getHandle().a((UUID) null, time);
getHandle().startConversion((UUID) null, time);
}
}
}

View File

@@ -72,9 +72,9 @@ public class CraftZombie extends CraftMonster implements Zombie {
public void setConversionTime(int time) {
if (time < 0) {
getHandle().drownedConversionTime = -1;
getHandle().getDataWatcher().set(EntityZombie.bF, false);
getHandle().getDataWatcher().set(EntityZombie.DROWN_CONVERTING, false);
} else {
getHandle().a(time);
getHandle().startDrownedConversion(time);
}
}
}