diff --git a/code/datums/components/rotation.dm b/code/datums/components/rotation.dm index ff424dc02e..6a4deb0fbf 100644 --- a/code/datums/components/rotation.dm +++ b/code/datums/components/rotation.dm @@ -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)