diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-13 23:32:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-13 23:32:14 -0300 |
commit | bb5509fa9bb454fcface723faca2e37efa6290aa (patch) | |
tree | 9ca6325c162c050b7352df2dc12c0c766f62742c | |
parent | 3713a15951b2fb9256f98452fb6c2b1c4a61dc84 (diff) | |
download | serverdata-bb5509fa9bb454fcface723faca2e37efa6290aa.tar.gz serverdata-bb5509fa9bb454fcface723faca2e37efa6290aa.tar.bz2 serverdata-bb5509fa9bb454fcface723faca2e37efa6290aa.tar.xz serverdata-bb5509fa9bb454fcface723faca2e37efa6290aa.zip |
Additional checks on 023-3
-rw-r--r-- | npc/023-3/logic.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/npc/023-3/logic.txt b/npc/023-3/logic.txt index 665a7fe50..9917302e8 100644 --- a/npc/023-3/logic.txt +++ b/npc/023-3/logic.txt @@ -283,8 +283,10 @@ OnTimer120: end; OnTouchie: - percentheal -40, -40; - slide 49, 41; + if (isin(.map$, .x, .y, 0)) { + percentheal -40, -40; + slide 49, 41; + } end; OnTouchNPC: @@ -313,8 +315,10 @@ OnTimer120: end; OnTouchie: - percentheal -40, -40; - slide 48, 42; + if (isin(.map$, .x, .y, 0)) { + percentheal -40, -40; + slide 49, 41; + } end; OnTouchNPC: |