Skip to content

Commit

Permalink
Fixed Visibility Logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Devlrxxh committed Apr 6, 2024
1 parent 5abcde4 commit d8478c7
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,5 @@ public static void handle(Player viewer, Player target) {
viewer.hidePlayer(target);
}
}
if (Practice.getInstance().isReplay()) {
if(PlayerUtil.inReplay(target) || PlayerUtil.inReplay(viewer)){
viewer.hidePlayer(target);
target.hidePlayer(viewer);
} else {
viewer.showPlayer(target);
target.showPlayer(viewer);
}
}
}
}

0 comments on commit d8478c7

Please sign in to comment.