mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 15:01:04 +01:00
[MDB Ignore] [IDB Ignore] Kills off /obj/item/device (#21774)
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
This commit is contained in:
@@ -56,7 +56,7 @@ Pipelines + Other Objects -> Pipe network
|
||||
atmos_init()
|
||||
|
||||
/obj/machinery/atmospherics/attackby(obj/item/attacking_item, mob/user)
|
||||
if(istype(attacking_item, /obj/item/device/pipe_painter))
|
||||
if(istype(attacking_item, /obj/item/pipe_painter))
|
||||
return FALSE
|
||||
..()
|
||||
|
||||
|
||||
@@ -95,11 +95,11 @@
|
||||
if (istype(src, /obj/machinery/atmospherics/pipe/tank))
|
||||
return ..()
|
||||
|
||||
if(istype(attacking_item,/obj/item/device/pipe_painter))
|
||||
if(istype(attacking_item,/obj/item/pipe_painter))
|
||||
return FALSE
|
||||
|
||||
if(istype(attacking_item, /obj/item/device/analyzer) && Adjacent(user))
|
||||
var/obj/item/device/analyzer/A = attacking_item
|
||||
if(istype(attacking_item, /obj/item/analyzer) && Adjacent(user))
|
||||
var/obj/item/analyzer/A = attacking_item
|
||||
A.analyze_gases(src, user)
|
||||
return FALSE
|
||||
|
||||
@@ -1303,11 +1303,11 @@
|
||||
return null
|
||||
|
||||
/obj/machinery/atmospherics/pipe/tank/attackby(obj/item/attacking_item, mob/user)
|
||||
if(istype(attacking_item, /obj/item/device/pipe_painter))
|
||||
if(istype(attacking_item, /obj/item/pipe_painter))
|
||||
return FALSE
|
||||
|
||||
if(istype(attacking_item, /obj/item/device/analyzer) && in_range(user, src))
|
||||
var/obj/item/device/analyzer/A = attacking_item
|
||||
if(istype(attacking_item, /obj/item/analyzer) && in_range(user, src))
|
||||
var/obj/item/analyzer/A = attacking_item
|
||||
A.analyze_gases(src, user)
|
||||
return TRUE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user