From 9b7c7b6e0f7459bc9765b0cbfdc45f3664c20df2 Mon Sep 17 00:00:00 2001 From: JTGSZ <46565256+JTGSZ@users.noreply.github.com> Date: Fri, 18 Oct 2019 23:55:40 -0400 Subject: [PATCH] RPD works again --- code/datums/components/rotation.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)