From 1b9ecc14eb5205c20a896cc60efdc2f554038f03 Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 12 Apr 2021 20:21:29 +0200 Subject: [PATCH] [HOTFIX] fib aufzug nativeui --- ReallifeGamemode.Server/Events/Key.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Events/Key.cs b/ReallifeGamemode.Server/Events/Key.cs index 92737c1e..84f8acc2 100644 --- a/ReallifeGamemode.Server/Events/Key.cs +++ b/ReallifeGamemode.Server/Events/Key.cs @@ -497,7 +497,7 @@ namespace ReallifeGamemode.Server.Events List stages = new List(); foreach (var e in PositionManager.ElevatorPoints) { - if (e.Position.DistanceTo2D(player.Position) <= 25 && e.Position.DistanceTo(player.Position) > 1.5) + if (e.Position.DistanceTo2D(player.Position) <= 30 && e.Position.DistanceTo(player.Position) > 1.5) { stages.Add(e.Stage); }