From b7a2b259edc173fb60f3cde6f5f155309af0c641 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 20 Sep 2017 22:55:59 +1000 Subject: [PATCH] Reach distance check is performed for all ranks now. --- MCGalaxy/Player/Player.Handlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Player/Player.Handlers.cs b/MCGalaxy/Player/Player.Handlers.cs index 5fb992cc8..a6482cf73 100644 --- a/MCGalaxy/Player/Player.Handlers.cs +++ b/MCGalaxy/Player/Player.Handlers.cs @@ -89,7 +89,7 @@ namespace MCGalaxy { } if (group.Permission == LevelPermission.Banned) return; - if (checkPlaceDist && group.Permission == LevelPermission.Guest) { + if (checkPlaceDist) { int dx = Pos.BlockX - x, dy = Pos.BlockY - y, dz = Pos.BlockZ - z; int diff = (int)Math.Sqrt(dx * dx + dy * dy + dz * dz);