From 324a024d52c57d28986b797bca883ee3a2247871 Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Fri, 6 Apr 2012 23:52:12 +0300 Subject: [PATCH] Commented out the no name check for mobs in proc/getmobs(). Too annoying --- baystation12.dme | 1 - code/defines/procs/helpers.dm | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index 3611dd831be..2e05cbcbeee 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -194,7 +194,6 @@ #define FILE_DIR "icons/vending_icons" #define FILE_DIR "interface" #define FILE_DIR "maps" -#define FILE_DIR "maps/backup" #define FILE_DIR "sound" #define FILE_DIR "sound/ambience" #define FILE_DIR "sound/announcer" diff --git a/code/defines/procs/helpers.dm b/code/defines/procs/helpers.dm index 972cd072cb0..0a1cb2f9653 100644 --- a/code/defines/procs/helpers.dm +++ b/code/defines/procs/helpers.dm @@ -817,9 +817,9 @@ Turf and target are seperate in case you want to teleport some distance from a t var/list/creatures = list() var/list/namecounts = list() for(var/mob/M in mobs) - if(!M.name || !M.real_name) + /*if((!M.name || !M.real_name) && !istype(M, /mob/new_player)) var/turf/T = get_turf(M) - message_admins("Alert! The mob with the key [M.key ? M.key : "NO KEY"] at ([T.x], [T.y], [T.z]) has no name!") + message_admins("Alert! The mob with the key [M.key ? M.key : "NO KEY"] at ([T.x], [T.y], [T.z]) has no name!")*/ var/name = M.name if (name in names) namecounts[name]++