We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfa46b3 commit bffc4b7Copy full SHA for bffc4b7
src/main/java/me/hsgamer/gamesinthebox/game/feature/HologramFeature.java
@@ -98,7 +98,9 @@ public static void reInit(@NotNull Hologram<Location> hologram) {
98
*/
99
@NotNull
100
public Hologram<Location> createHologram(@NotNull Location location) {
101
- return hologramProvider.createHologram(baseName + "-" + UUID.randomUUID(), location);
+ Hologram<Location> hologram = hologramProvider.createHologram(baseName + "-" + UUID.randomUUID(), location);
102
+ holograms.add(hologram);
103
+ return hologram;
104
}
105
106
@Override
0 commit comments