diff --git a/code/game/objects/items/devices/communicator/communicator.dm b/code/game/objects/items/devices/communicator/communicator.dm index 4b493e87f6..91da955297 100644 --- a/code/game/objects/items/devices/communicator/communicator.dm +++ b/code/game/objects/items/devices/communicator/communicator.dm @@ -372,11 +372,10 @@ var/global/list/obj/item/communicator/all_communicators = list() // Parameters: None // Description: Removes the ghost's address and nulls the exonet datum, to allow qdel()ing. /mob/observer/dead/Destroy() - . = ..() if(exonet) exonet.remove_address() qdel_null(exonet) - return ..() + . = ..() // Proc: register_device() // Parameters: 1 (user - the person to use their name for) diff --git a/code/modules/mob/mob_planes_vr.dm b/code/modules/mob/mob_planes_vr.dm index 963cec7e82..6e4377d8a9 100644 --- a/code/modules/mob/mob_planes_vr.dm +++ b/code/modules/mob/mob_planes_vr.dm @@ -22,8 +22,9 @@ my_mob = M /obj/screen/plane_master/augmented/Destroy() + entopic_users -= my_mob my_mob = null - return ..() + . = ..() /obj/screen/plane_master/augmented/set_visibility(var/want = FALSE) . = ..() diff --git a/modular_chomp/code/game/objects/effects/dark_growth.dm b/modular_chomp/code/game/objects/effects/dark_growth.dm index b56d1cd0c8..4d4d357716 100644 --- a/modular_chomp/code/game/objects/effects/dark_growth.dm +++ b/modular_chomp/code/game/objects/effects/dark_growth.dm @@ -116,9 +116,10 @@ return ..() /obj/effect/dark/Destroy() - . = ..() if(linked_node) linked_node.children_effects -= src + linked_node = null + . = ..() /obj/effect/dark/process() //set background = 1 diff --git a/modular_chomp/code/modules/vore/eating/soulcatcher.dm b/modular_chomp/code/modules/vore/eating/soulcatcher.dm index 69c68b1dfe..26074a3fa9 100644 --- a/modular_chomp/code/modules/vore/eating/soulcatcher.dm +++ b/modular_chomp/code/modules/vore/eating/soulcatcher.dm @@ -63,7 +63,7 @@ if(istype(linked_belly)) UnregisterSignal(linked_belly, COMSIG_BELLY_UPDATE_VORE_FX) linked_belly = null - ..() + . = ..() // Sends messages to the owner of the soulcatcher /obj/soulgem/proc/notify_holder(var/message)