Merge pull request #4022 from Citadel-Station-13/upstream-merge-32889

[MIRROR] Makes some turning procs consistently turn clockwise
This commit is contained in:
deathride58
2017-11-20 05:48:20 +00:00
committed by GitHub
4 changed files with 6 additions and 6 deletions
+1 -2
View File
@@ -139,8 +139,7 @@
if(usr.incapacitated())
return
setDir(turn(dir, 90))
return
setDir(turn(dir, -90))
/obj/item/device/assembly/infra/AltClick(mob/user)
..()
@@ -89,7 +89,7 @@
if (anchored)
to_chat(usr, "It is fastened to the floor!")
return 0
setDir(turn(dir, 90))
setDir(turn(dir, -90))
return 1
/obj/structure/particle_accelerator/attackby(obj/item/W, mob/user, params)