Mappings Update

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2018-12-06 10:00:00 +11:00
parent e9e6bec4e5
commit 102dee7d4f
123 changed files with 393 additions and 442 deletions

View File

@@ -23,8 +23,8 @@ public class CraftEnderDragon extends CraftComplexLivingEntity implements EnderD
public CraftEnderDragon(CraftServer server, EntityEnderDragon entity) {
super(server, entity);
if (entity.ds() != null) {
this.bossBar = new CraftBossBar(entity.ds().c); // PAIL rename getEnderDragonBattle
if (entity.getEnderDragonBattle() != null) {
this.bossBar = new CraftBossBar(entity.getEnderDragonBattle().bossBattle);
}
}

View File

@@ -14,8 +14,8 @@ public class CraftWither extends CraftMonster implements Wither {
public CraftWither(CraftServer server, EntityWither entity) {
super(server, entity);
if (entity.bL != null) {
this.bossBar = new CraftBossBar(entity.bL);
if (entity.bossBattle != null) {
this.bossBar = new CraftBossBar(entity.bossBattle);
}
}