diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 15:07:49 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 15:07:49 +0000 |
commit | bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c (patch) | |
tree | 62a1aba365748373a807e5b0d7a817d4014cadd0 /npc/cities | |
parent | 86cb6a03a36d50d969b1881ac55417c3fe6a0798 (diff) | |
download | hercules-bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c.tar.gz hercules-bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c.tar.bz2 hercules-bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c.tar.xz hercules-bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c.zip |
Another fix to Lucius (trivial) on /cities/lighthalzen.txt. (bugreport:1125)
Fixed Inn Employee#Ahlma warping to same destination as save point, bugreport: 191.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12777 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/cities')
-rw-r--r-- | npc/cities/lighthalzen.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/cities/lighthalzen.txt b/npc/cities/lighthalzen.txt index 8d52eced2..49aa3b42b 100644 --- a/npc/cities/lighthalzen.txt +++ b/npc/cities/lighthalzen.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= erKURITA, Au{R}oN (Translated by Alan), $ephiroth //===== Current Version: ===================================== -//= 1.7a +//= 1.7b //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -36,6 +36,7 @@ //= 1.7 Removed Auciton Staff as the offical auction file has been added. [L0ne_W0lf] //= Corrected Lucius so he checks the donation variable. (bugreport:1103) [L0ne_W0lf] //= 1.7a Another fix to Lucius. (bugreport:1118) [L0ne_W0lf] +//= 1.7b Another fix to Lucius (trivial). (bugreport:1125) //============================================================= lighthalzen,198,285,5 script Jiwon#zen5 862,{ @@ -555,7 +556,7 @@ lighthalzen,182,102,3 script Lucius#zen5 866,{ mes "to cancel, please enter ''0.''"; next; input .@input; - if (.@input > 30000) { + if (.@input > 30000 || .@input < 0) { mes "[Lucius]"; mes "Please enter a value"; mes "from 1 to 30,000 in"; |