From 131ffb36eeec294fe7c5623ccce2253f0a0fbd8e Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 1 Jun 2018 14:19:02 +1000 Subject: [PATCH] fix hide oops --- MCGalaxy/Player/Player.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Player/Player.cs b/MCGalaxy/Player/Player.cs index 14197d3cf..5d9446fac 100644 --- a/MCGalaxy/Player/Player.cs +++ b/MCGalaxy/Player/Player.cs @@ -95,7 +95,7 @@ namespace MCGalaxy { public override bool CanSeeEntity(Entity other) { Player target = other as Player; if (target == null) return true; // not a player - if (target == other) return true; // always see self + if (target == this) return true; // always see self // hidden via /hide or /ohide if (target.hidden) {