[MIRROR] some more grep checks (#11414)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-08-14 11:22:06 -07:00
committed by GitHub
parent 83133252b1
commit f46d700e64
68 changed files with 136 additions and 122 deletions

View File

@@ -41,7 +41,7 @@
else
reset_search()
UnregisterSignal(Q, COMSIG_GHOST_QUERY_COMPLETE)
qdel_null(Q) //get rid of the query
QDEL_NULL(Q) //get rid of the query
return
/obj/item/antag_spawner/proc/reset_search()

View File

@@ -361,7 +361,7 @@
/mob/observer/dead/Destroy()
if(exonet)
exonet.remove_address()
qdel_null(exonet)
QDEL_NULL(exonet)
. = ..()
// Proc: register_device()

View File

@@ -47,7 +47,7 @@
/obj/item/flashlight/Destroy()
STOP_PROCESSING(SSobj, src)
qdel_null(cell)
QDEL_NULL(cell)
return ..()
/obj/item/flashlight/get_cell()

View File

@@ -37,7 +37,7 @@
cell = new cell(src)
/obj/item/suit_cooling_unit/Destroy()
qdel_null(cell)
QDEL_NULL(cell)
return ..()
/obj/item/suit_cooling_unit/process()

View File

@@ -57,8 +57,8 @@
ion_trail.stop()
/obj/item/uav/Destroy()
qdel_null(cell)
qdel_null(ion_trail)
QDEL_NULL(cell)
QDEL_NULL(ion_trail)
LAZYCLEARLIST(masters)
STOP_PROCESSING(SSobj, src)
return ..()

View File

@@ -70,7 +70,7 @@ var/list/RMS_random_malfunction = list(/obj/item/fbp_backup_cell,
add_overlay("rms_charge[charge_stage]")
/obj/item/pipe_dispenser/Destroy()
qdel_null(spark_system)
QDEL_NULL(spark_system)
return ..()
/obj/item/rms/update_icon()

View File

@@ -60,8 +60,8 @@
recipe = first_atmos
/obj/item/pipe_dispenser/Destroy()
qdel_null(spark_system)
qdel_null(tool)
QDEL_NULL(spark_system)
QDEL_NULL(tool)
return ..()
/obj/item/pipe_dispenser/attack_self(mob/user)