From bea2e927dac0848fbb87d7c1b14469168f1dd56d Mon Sep 17 00:00:00 2001 From: Spaghetti-bit Date: Thu, 1 Aug 2024 08:15:48 -0700 Subject: [PATCH] Locks buttons by default. (#26346) --- code/_onclick/hud/action_button.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/hud/action_button.dm b/code/_onclick/hud/action_button.dm index 1c78df39a05..6ec1c7c5dd9 100644 --- a/code/_onclick/hud/action_button.dm +++ b/code/_onclick/hud/action_button.dm @@ -19,7 +19,7 @@ /// Whether or not this should be shown to observers var/shown_to_observers = FALSE /// Whether or not this button is locked, preventing it from being dragged. - var/locked = FALSE + var/locked = TRUE /atom/movable/screen/movable/action_button/Destroy() . = ..()