mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +01:00
* Fixed normalize_directions() for valves and simple pipes (fixes #6746)
* Added missing icons for hidden HE pipes and junctions (fixes #6636).
This commit is contained in:
@@ -46,9 +46,9 @@
|
||||
return
|
||||
|
||||
/obj/machinery/atmospherics/binary/valve/proc/normalize_dir()
|
||||
if(dir==3)
|
||||
if(dir==2)
|
||||
dir = 1
|
||||
else if(dir==12)
|
||||
else if(dir==8)
|
||||
dir = 4
|
||||
|
||||
/obj/machinery/atmospherics/binary/valve/attack_ai(mob/user)
|
||||
|
||||
@@ -116,9 +116,9 @@ The regular pipe you see everywhere, including bent ones.
|
||||
qdel(src)
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/proc/normalize_dir()
|
||||
if(dir==3)
|
||||
if(dir==2)
|
||||
dir = 1
|
||||
else if(dir==12)
|
||||
else if(dir==8)
|
||||
dir = 4
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/update_icon()
|
||||
|
||||
Reference in New Issue
Block a user