fix: Change hologramId not to use special char # (#2)

Apprently DecentHolograms doesn't support `#` so it got changed to `-`.
This commit is contained in:
TeamHR 2024-05-09 17:49:31 +05:30 committed by GitHub
parent ac2e9931c9
commit f7151a8f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;