RPD works again

This commit is contained in:
JTGSZ
2019-10-18 23:55:40 -04:00
parent 9fd95537bc
commit 9b7c7b6e0f
+3 -3
View File
@@ -124,7 +124,7 @@
set src in oview(1)
GET_COMPONENT(rotcomp,/datum/component/simple_rotation)
if(rotcomp)
rotcomp.HandRot(usr,ROTATION_CLOCKWISE)
rotcomp.HandRot(null,usr,ROTATION_CLOCKWISE)
/atom/movable/proc/simple_rotate_counterclockwise()
set name = "Rotate Counter-Clockwise"
@@ -132,7 +132,7 @@
set src in oview(1)
GET_COMPONENT(rotcomp,/datum/component/simple_rotation)
if(rotcomp)
rotcomp.HandRot(usr,ROTATION_COUNTERCLOCKWISE)
rotcomp.HandRot(null,usr,ROTATION_COUNTERCLOCKWISE)
/atom/movable/proc/simple_rotate_flip()
set name = "Flip"
@@ -140,4 +140,4 @@
set src in oview(1)
GET_COMPONENT(rotcomp,/datum/component/simple_rotation)
if(rotcomp)
rotcomp.HandRot(usr,ROTATION_FLIP)
rotcomp.HandRot(null,usr,ROTATION_FLIP)