mirror of
https://github.com/songoda/UltimateRepairing.git
synced 2024-11-28 21:48:29 +01:00
fix: Change hologramId not to use special char #
(#2)
Apprently DecentHolograms doesn't support `#` so it got changed to `-`.
This commit is contained in:
parent
ac2e9931c9
commit
f7151a8f59
@ -12,7 +12,7 @@ import java.util.Objects;
|
||||
|
||||
public class UAnvil {
|
||||
private static int nextHologramId = 0;
|
||||
private final String hologramId = "UR-Anvil#" + (++nextHologramId);
|
||||
private final String hologramId = "UR-Anvil-" + (++nextHologramId);
|
||||
|
||||
private final Location location;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user