Skip to content

Commit 89b9a47

Browse files
restores some old behavior
1 parent 9121fe2 commit 89b9a47

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

code/game/objects/objs.dm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,14 @@ a {
735735
user.visible_message( "<span class='notice'>[user] [anchored ? "wrench" : "unwrench"]es \the [src] [anchored ? "in place" : "from its fixture"]</span>",
736736
"<span class='notice'>[bicon(src)] You [anchored ? "wrench" : "unwrench"] \the [src] [anchored ? "in place" : "from its fixture"].</span>",
737737
"<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
738746
return TRUE
739747
return FALSE
740748

0 commit comments

Comments
 (0)