Skip to content

Commit

Permalink
Merge pull request #16768 from MadmanMartian/TK_crawlaporting
Browse files Browse the repository at this point in the history
adds proximity check to stop people from crawlaporting with TK
  • Loading branch information
N3X15 authored Dec 14, 2017
2 parents 5ccc460 + 06aaf9b commit bb83bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/_onclick/other_mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
else
A.attack_stump(src, params)

if(src.lying && !(isUnconscious() || stunned || paralysis) && check_crawl_ability() && istype(A, /turf/simulated) && !pulledby && !locked_to && !client.move_delayer.blocked())
if(src.lying && !(isUnconscious() || stunned || paralysis) && check_crawl_ability() && istype(A, /turf/simulated) && proximity && !pulledby && !locked_to && !client.move_delayer.blocked())
Move(A, get_dir(src,A))
delayNextMove(movement_delay()*3,additive=1)

Expand Down

0 comments on commit bb83bea

Please sign in to comment.