2018-11-10 10:22:39 +01:00
|
|
|
--- a/net/minecraft/server/BossBattleCustom.java
|
|
|
|
+++ b/net/minecraft/server/BossBattleCustom.java
|
2018-12-25 22:00:00 +01:00
|
|
|
@@ -6,12 +6,27 @@
|
|
|
|
import java.util.Set;
|
2018-11-10 10:22:39 +01:00
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.boss.KeyedBossBar;
|
|
|
|
+import org.bukkit.craftbukkit.boss.CraftKeyedBossbar;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class BossBattleCustom extends BossBattleServer {
|
|
|
|
|
|
|
|
private final MinecraftKey h;
|
|
|
|
private final Set<UUID> i = Sets.newHashSet();
|
|
|
|
private int j;
|
|
|
|
private int k = 100;
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ private KeyedBossBar bossBar;
|
|
|
|
+
|
|
|
|
+ public KeyedBossBar getBukkitEntity() {
|
|
|
|
+ if (bossBar == null) {
|
|
|
|
+ bossBar = new CraftKeyedBossbar(this);
|
|
|
|
+ }
|
|
|
|
+ return bossBar;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
public BossBattleCustom(MinecraftKey minecraftkey, IChatBaseComponent ichatbasecomponent) {
|
|
|
|
super(ichatbasecomponent, BossBattle.BarColor.WHITE, BossBattle.BarStyle.PROGRESS);
|