We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9121fe2 commit 89b9a47Copy full SHA for 89b9a47
code/game/objects/objs.dm
@@ -735,6 +735,14 @@ a {
735
user.visible_message( "<span class='notice'>[user] [anchored ? "wrench" : "unwrench"]es \the [src] [anchored ? "in place" : "from its fixture"]</span>",
736
"<span class='notice'>[bicon(src)] You [anchored ? "wrench" : "unwrench"] \the [src] [anchored ? "in place" : "from its fixture"].</span>",
737
"<span class='notice'>You hear a ratchet.</span>")
738
+
739
+ if(verb_rotates)
740
+ if(anchored)
741
+ verbs |= /obj/proc/rotate_cw
742
+ verbs |= /obj/proc/rotate_ccw
743
+ else
744
+ verbs -= /obj/proc/rotate_cw
745
+ verbs -= /obj/proc/rotate_ccw
746
return TRUE
747
return FALSE
748
0 commit comments