diff options
Diffstat (limited to 'npc/cities/jawaii.txt')
-rw-r--r-- | npc/cities/jawaii.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/cities/jawaii.txt b/npc/cities/jawaii.txt index b4d322023..cafe6569d 100644 --- a/npc/cities/jawaii.txt +++ b/npc/cities/jawaii.txt @@ -5,7 +5,7 @@ //= DNett123 (1.1 - 1.5) //= L0ne_w0lf //===== Current Version: ===================================== -//= 3.5 +//= 3.6 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -34,6 +34,7 @@ //= 3.3a Just a little typo error. [Samuray22] //= 3.4 Added missing checkweights. [L0ne_W0lf] //= 3.5 Replaced effect numerics with constants. [L0ne_W0lf] +//= 3.6 Fixed bartender so he no longer hangs. [L0ne_W0lf] //============================================================ // Jawaii @@ -890,7 +891,9 @@ jawaii_in,28,124,0 script Bartender#jaw 46,{ percentheal -100,0; end; } - set zeny,zeny-100; + if (Zeny >= 100) { + set zeny,zeny-100; + } switch(rand(4)) { case 1: mes "[Bartender]"; |