diff --git a/Plugin/src/main/java/dev/lrxh/neptune/game/match/listener/MatchListener.java b/Plugin/src/main/java/dev/lrxh/neptune/game/match/listener/MatchListener.java index 69fa0eea..75a25a35 100644 --- a/Plugin/src/main/java/dev/lrxh/neptune/game/match/listener/MatchListener.java +++ b/Plugin/src/main/java/dev/lrxh/neptune/game/match/listener/MatchListener.java @@ -501,7 +501,7 @@ public void onItemPickup(EntityPickupItemEvent event) { Profile profile = API.getProfile(player); if (profile == null) return; - + if (profile.getState().equals(ProfileState.IN_SPECTATOR)) event.setCancelled(true); if (!isPlayerInMatch(profile)) { event.setCancelled(true); }