Skip to content

Commit

Permalink
Fix broken spectator/invisible PR on 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeprimm committed Dec 13, 2023
1 parent 85885ce commit 20700c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1328,14 +1328,14 @@ public void sendMessage(String msg)
@Override
public boolean isInvisible() {
if(player != null) {
return player.isInvisible()
return player.isInvisible();
}
return false;
}
@override
@Override
public boolean isSpectator() {
if(player != null) {
return player.isSpectator()
return player.isSpectator();
}
return false;
}
Expand Down

0 comments on commit 20700c2

Please sign in to comment.