mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
19 lines
736 B
Diff
19 lines
736 B
Diff
--- a/net/minecraft/server/bossevents/CustomBossEvent.java
|
|
+++ b/net/minecraft/server/bossevents/CustomBossEvent.java
|
|
@@ -23,6 +_,16 @@
|
|
private final Set<UUID> players = Sets.newHashSet();
|
|
private int value;
|
|
private int max = 100;
|
|
+ // CraftBukkit start
|
|
+ private org.bukkit.boss.KeyedBossBar bossBar;
|
|
+
|
|
+ public org.bukkit.boss.KeyedBossBar getBukkitEntity() {
|
|
+ if (this.bossBar == null) {
|
|
+ this.bossBar = new org.bukkit.craftbukkit.boss.CraftKeyedBossbar(this);
|
|
+ }
|
|
+ return this.bossBar;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public CustomBossEvent(ResourceLocation id, Component name) {
|
|
super(name, BossEvent.BossBarColor.WHITE, BossEvent.BossBarOverlay.PROGRESS);
|