[MIRROR] August 2024 various fixes (#8766)

Co-authored-by: Nadyr <41974248+Darlantanis@users.noreply.github.com>
This commit is contained in:
CHOMPStation2
2024-08-14 02:15:42 +02:00
committed by GitHub
co-authored by Nadyr
parent f859c5e25f
commit 24658f4b9d
32 changed files with 703 additions and 116 deletions
@@ -136,6 +136,23 @@
src.set_dir(turn(src.dir, 270))
update()
//VOREstation edit: counter-clockwise rotation
/obj/structure/disposalconstruct/verb/rotate_counterclockwise()
set category = "Object"
set name = "Rotate Pipe Counter-Clockwise"
set src in view(1)
if(usr.stat)
return
if(anchored)
to_chat(usr, "You must unfasten the pipe before rotating it.")
return
src.set_dir(turn(src.dir, 90))
update()
//VOREstation edit end
/obj/structure/disposalconstruct/verb/flip()
set category = "Object"
set name = "Flip Pipe"