Merge pull request #3887 from Citadel-Station-13/upstream-merge-32592

[MIRROR] Fixes medbots not injecting from one tile away
This commit is contained in:
LetterJay
2017-11-11 15:57:08 -06:00
committed by GitHub
@@ -343,7 +343,7 @@
if(C.stat == DEAD || (C.status_flags & FAKEDEATH))
return FALSE //welp too late for them!
if(!(loc == C.loc) || !(isturf(C.loc) && isturf(loc)))
if(!(loc == C.loc) && !(isturf(C.loc) && isturf(loc)))
return FALSE
if(C.suiciding)