diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/player/resourcepack/LegacyResourcePackHandler.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/player/resourcepack/LegacyResourcePackHandler.java index b2b803991..b1b325484 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/player/resourcepack/LegacyResourcePackHandler.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/player/resourcepack/LegacyResourcePackHandler.java @@ -109,7 +109,7 @@ public sealed class LegacyResourcePackHandler extends ResourcePackHandler break; } onResourcePackResponse(new ResourcePackResponseBundle(queued.getId(), - new String(queued.getHash()), + queued.getHash() == null ? "" : new String(queued.getHash()), PlayerResourcePackStatusEvent.Status.DECLINED)); queued = null; } @@ -172,6 +172,10 @@ public sealed class LegacyResourcePackHandler extends ResourcePackHandler @Override public boolean hasPackAppliedByHash(final byte[] hash) { + if (hash == null) { + return false; + } + return this.appliedResourcePack != null && Arrays.equals(this.appliedResourcePack.getHash(), hash); }