From 807a2ebaebfbbb79106a2d59035c31586a1d78e7 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 13 Feb 2018 21:59:44 -0500 Subject: [PATCH] Merge pull request #35605 from MrStonedOne/patch-481 Fixes ai transform being picky --- code/modules/mob/transform_procs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 6bec609e3a..01c1bb6815 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -344,8 +344,8 @@ landmark_loc += sloc.loc if(!landmark_loc.len) - message_admins("[src] cannot be made an AI as there are no valid spawn points. Yell at a mapper!") - return + message_admins("Could not find ai landmark for [src]. Yell at a mapper! We are spawning them at their current location.") + landmark_loc += loc if(client) stop_sound_channel(CHANNEL_LOBBYMUSIC)