diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-19 15:19:25 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-19 15:19:25 +0000 |
commit | d6aa899bd3508d34b569f5745afb08fe97593b20 (patch) | |
tree | 00fe59b73270e82e8a10521fcde1c710adfe198a /npc/cities/umbala.txt | |
parent | ead9663ed875ca0c3e64ebe5f9a5dd6004b2abbc (diff) | |
download | hercules-d6aa899bd3508d34b569f5745afb08fe97593b20.tar.gz hercules-d6aa899bd3508d34b569f5745afb08fe97593b20.tar.bz2 hercules-d6aa899bd3508d34b569f5745afb08fe97593b20.tar.xz hercules-d6aa899bd3508d34b569f5745afb08fe97593b20.zip |
- Some cleanups and corrections in battle.c to account for negative (absorbed) damage.
- Fixed umbala.txt's Elemental Stones Quest bug. Thanks to Vhan Morthis.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7250 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/cities/umbala.txt')
-rw-r--r-- | npc/cities/umbala.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/cities/umbala.txt b/npc/cities/umbala.txt index c51835b51..1967690d4 100644 --- a/npc/cities/umbala.txt +++ b/npc/cities/umbala.txt @@ -580,7 +580,7 @@ umbala.gat,221,193,1 script #Skeletal Gate 111,{ if(event_umbala < 6) goto LSecondCheck;
if(@ryumon == 33) goto Lwarp;
LSecondCheck:
- if(event_umbala >= 6) goto LLNewEnd;
+ if(event_umbala >= 6) goto LNewEnd;
if(@ryumon == 13) goto Lwarp;
LNewEnd:
mes "^3355FFNothing happened.";
@@ -1684,4 +1684,4 @@ L4: umbala.gat,136,195,0 script #Warp Point 139,1,1,{
warp "umbala.gat",145,166;
end;
-}
\ No newline at end of file +}
|