Fixes a couple pAI runtimes

This commit is contained in:
Crazylemon64
2016-08-22 21:07:17 -07:00
parent ce58dc1366
commit 7c98824dbd
@@ -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++