Merge pull request #5519 from Crazylemon64/pai_message_fix

Fixes a couple pAI runtimes
This commit is contained in:
TheDZD
2016-08-23 14:05:33 -04:00
committed by GitHub
@@ -56,7 +56,7 @@
while(!istype(M, /mob/living))
if(!M || !M.loc || count > 6)
//For a runtime where M ends up in nullspace (similar to bluespace but less colourful)
to_chat(src, "You are not being carried by anyone!")
to_chat(P, "You are not being carried by anyone!")
return 0
M = M.loc
count++
@@ -705,7 +705,7 @@
while(!isliving(held))
if(!held || !held.loc || count > 6)
//For a runtime where M ends up in nullspace (similar to bluespace but less colourful)
to_chat(src, "You are not being carried by anyone!")
to_chat(user, "You are not being carried by anyone!")
return 0
held = held.loc
count++