From bfbaf1e3d4a84b3c0484a0409425e897eb1aef23 Mon Sep 17 00:00:00 2001 From: Incoming Date: Thu, 2 Oct 2014 03:45:28 -0400 Subject: [PATCH] Adds step_x and step_y to the locked var list. Touching either of these on ANYTHING breaks gliding for everything for the entire round. There is no good reason to ever touch them! #WhyWasntThisDoneYearsAgo --- code/modules/admin/verbs/modifyvariables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/modifyvariables.dm b/code/modules/admin/verbs/modifyvariables.dm index 9f1e3e206bb..97f7f1198f2 100644 --- a/code/modules/admin/verbs/modifyvariables.dm +++ b/code/modules/admin/verbs/modifyvariables.dm @@ -131,7 +131,7 @@ var/list/forbidden_varedit_object_types = list( if(!istype(L,/list)) src << "Not a List." - var/list/locked = list("vars", "client", "virus", "viruses", "cuffed", "last_eaten", "unlock_content") + var/list/locked = list("vars", "client", "virus", "viruses", "cuffed", "last_eaten", "unlock_content", "step_x", "step_y") var/list/ckey_edit = list("key", "ckey") var/list/icon_edit = list("icon", "icon_state", "overlays", "underlays") var/list/names = sortList(L)