From edfa9268861050c5a3db7739f627c447fe25d529 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 11 Jan 2018 22:30:24 -0500 Subject: [PATCH 1/2] Move a definition to the right file (#34288) --- code/modules/mob/mob.dm | 3 --- code/modules/mob/mob_defines.dm | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index e78adfe697..c7ed20370b 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -1,6 +1,3 @@ -/mob - use_tag = TRUE - /mob/Destroy()//This makes sure that mobs with clients/keys are not just deleted from the game. GLOB.mob_list -= src GLOB.dead_mob_list -= src diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index a6ee2712af..4e179c0b4d 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -5,6 +5,7 @@ flags_1 = HEAR_1 hud_possible = list(ANTAG_HUD) pressure_resistance = 8 + use_tag = TRUE var/lighting_alpha = LIGHTING_PLANE_ALPHA_VISIBLE var/datum/mind/mind var/list/datum/action/actions = list()