From 05238636c70f4e3a475a015f4cfc920339873dc5 Mon Sep 17 00:00:00 2001 From: ceikry Date: Thu, 22 Jul 2021 11:24:47 -0500 Subject: [PATCH] Adjust noclip movement type speed --- Server/src/main/kotlin/api/ContentAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/api/ContentAPI.kt b/Server/src/main/kotlin/api/ContentAPI.kt index 00103d5be..25b4921fa 100644 --- a/Server/src/main/kotlin/api/ContentAPI.kt +++ b/Server/src/main/kotlin/api/ContentAPI.kt @@ -742,7 +742,7 @@ object ContentAPI { @JvmStatic fun forceWalk(entity: Entity, dest: Location, type: String){ if(type == "clip"){ - ForceMovement(entity, dest, 1, 1).run() + ForceMovement(entity, dest, 10, 10).run() return } val pathfinder = when(type){