Another runtime fix, I believe this to originally be caused by the automatic arrival announcement thing not having a source mob

This commit is contained in:
Miniature
2012-02-08 01:28:55 +10:30
parent 6de4139066
commit 22687953fc
+3 -1
View File
@@ -412,7 +412,9 @@ var
// Does not display message; displayes the mob's voice_message (ie "chimpers")
if (length(heard_voice))
var/rendered = "[part_a][vname][part_b][M.voice_message][part_c]"
var/rendered = ""
if(M)
rendered = "[part_a][vname][part_b][M.voice_message][part_c]"
for (var/mob/R in heard_voice)
if(istype(R, /mob/living/silicon/ai))