mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 18:13:34 +01:00
Removed a duplicate proc. Pimped out the Blueprints.
This commit is contained in:
@@ -149,7 +149,7 @@ I kind of like the right click only--the window version can get a little confusi
|
||||
|
||||
vents.Add(temp_vent)
|
||||
|
||||
var/atom/a = get_turf_loc(temp_vent)
|
||||
var/atom/a = get_turf(temp_vent)
|
||||
ventAreas.Add(a.loc)
|
||||
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
for(var/obj/machinery/atmospherics/unary/vent_pump/vent in vents)
|
||||
if(vent.loc.z != loc.z)
|
||||
continue
|
||||
var/atom/a = get_turf_loc(vent)
|
||||
var/atom/a = get_turf(vent)
|
||||
choices.Add(a.loc)
|
||||
var/turf/startloc = loc
|
||||
var/obj/selection = input("Select a destination.", "Duct System") in choices
|
||||
|
||||
@@ -258,7 +258,7 @@
|
||||
for(var/obj/machinery/atmospherics/unary/vent_pump/vent in vents)
|
||||
if(vent.loc.z != loc.z)
|
||||
continue
|
||||
var/atom/a = get_turf_loc(vent)
|
||||
var/atom/a = get_turf(vent)
|
||||
choices.Add(a.loc)
|
||||
var/turf/startloc = loc
|
||||
var/obj/selection = input("Select a destination.", "Duct System") in choices
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
for(var/obj/machinery/atmospherics/unary/vent_pump/vent in vents)
|
||||
if(vent.loc.z != loc.z)
|
||||
continue
|
||||
var/atom/a = get_turf_loc(vent)
|
||||
var/atom/a = get_turf(vent)
|
||||
choices.Add(a.loc)
|
||||
var/turf/startloc = loc
|
||||
var/obj/selection = input("Select a destination.", "Duct System") in choices
|
||||
|
||||
Reference in New Issue
Block a user