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]++