From 11daaadf79c3d72382d475719bd5dee535d53751 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 18 Mar 2022 18:43:40 -0300 Subject: [PATCH] arguments. --- code/game/objects/structures/statues.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/statues.dm b/code/game/objects/structures/statues.dm index 268838dac9..093f858856 100644 --- a/code/game/objects/structures/statues.dm +++ b/code/game/objects/structures/statues.dm @@ -24,7 +24,7 @@ var/rotation_flags = ROTATION_ALTCLICK | ROTATION_CLOCKWISE | ROTATION_COUNTERCLOCKWISE | ROTATION_VERBS AddComponent(/datum/component/simple_rotation, rotation_flags, null, CALLBACK(src, .proc/can_be_rotated)) -/obj/structure/statue/proc/can_be_rotated() +/obj/structure/statue/proc/can_be_rotated(mob/user, rotation_type) if(anchored) to_chat(user, "[src] cannot be rotated while it is fastened to the floor!") return FALSE