Merge pull request #34915 from Cruix/flipstuff

Fixed the simple rotation component
This commit is contained in:
Jordan Brown
2018-01-25 22:42:04 -05:00
committed by CitadelStationBot
parent 0c86312618
commit f703e0f8d8

View File

@@ -63,10 +63,10 @@
if(rotation_flags & ROTATION_ALTCLICK)
to_chat(user, "<span class='notice'>Alt-click to rotate it clockwise.</span>")
/datum/component/simple_rotation/proc/HandRot(mob/user, rotation)
if(!can_be_rotated.Invoke(user,default_rotation_direction) || !can_user_rotate.Invoke(user,default_rotation_direction))
/datum/component/simple_rotation/proc/HandRot(mob/user, rotation = default_rotation_direction)
if(!can_be_rotated.Invoke(user, rotation) || !can_user_rotate.Invoke(user, rotation))
return
BaseRot(user,default_rotation_direction)
BaseRot(user, rotation)
/datum/component/simple_rotation/proc/WrenchRot(obj/item/I, mob/living/user)
if(!can_be_rotated.Invoke(user,default_rotation_direction) || !can_user_rotate.Invoke(user,default_rotation_direction))