diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-02 02:52:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-02 02:52:32 -0300 |
commit | 968f737094350daec8e3cfec27b26c28277a8920 (patch) | |
tree | 3d5ca61ea7458b54ce4d88fc3bcad14f751f3d16 | |
parent | d6b43c03851b2643041fbe447908dba37b9fa485 (diff) | |
download | serverdata-968f737094350daec8e3cfec27b26c28277a8920.tar.gz serverdata-968f737094350daec8e3cfec27b26c28277a8920.tar.bz2 serverdata-968f737094350daec8e3cfec27b26c28277a8920.tar.xz serverdata-968f737094350daec8e3cfec27b26c28277a8920.zip |
REBIRTH_OVERLEVEL can't be negative
-rw-r--r-- | npc/025-2/phoenix.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/025-2/phoenix.txt b/npc/025-2/phoenix.txt index d0ad0b8c7..74805389d 100644 --- a/npc/025-2/phoenix.txt +++ b/npc/025-2/phoenix.txt @@ -84,7 +84,7 @@ STATUSUP_INT+=2; STATUSUP_DEX+=2; STATUSUP_LUK+=2; - REBIRTH_OVERLEVEL=BaseLevel-.@blvl; + REBIRTH_OVERLEVEL=max(0, BaseLevel-.@blvl); resetlvl(3); NewcomerEXPDROPUP(); getitembound SupremeGift, 1, 4; |