diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-04 02:21:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-04 02:21:01 -0300 |
commit | 5523a52f38d1cd2a0f2947ff89661a4d39a42e3a (patch) | |
tree | 3ed04d04271b92ef711d3582297dc19fb82fd36f /npc/011-1/manastone.txt | |
parent | bc685e505e42f7bf4102316eaa994d93a880b9c0 (diff) | |
download | serverdata-5523a52f38d1cd2a0f2947ff89661a4d39a42e3a.tar.gz serverdata-5523a52f38d1cd2a0f2947ff89661a4d39a42e3a.tar.bz2 serverdata-5523a52f38d1cd2a0f2947ff89661a4d39a42e3a.tar.xz serverdata-5523a52f38d1cd2a0f2947ff89661a4d39a42e3a.zip |
Do not allow healing at Mana Stone's not-worthy judgment, with min() functions
Diffstat (limited to 'npc/011-1/manastone.txt')
-rw-r--r-- | npc/011-1/manastone.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/011-1/manastone.txt b/npc/011-1/manastone.txt index f94933cc3..429d1a4f6 100644 --- a/npc/011-1/manastone.txt +++ b/npc/011-1/manastone.txt @@ -41,7 +41,7 @@ L_NotWorthy: else dispbottom l("I should train my intelligence, and level up, both my base as my Job Level."); npctalk3 l("You are not worthy!"); - percentheal -70+BaseLevel, -100+BaseLevel; + percentheal min(-10, -70+BaseLevel), min(-10, -100+BaseLevel); end; L_Level: |