diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-27 08:17:48 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-27 08:17:48 +0000 |
commit | 592b4e4006a4887dbe8ad384e7c4b276da2bbc4d (patch) | |
tree | a64ea248e64f636b3e94ab503df2b231a30b0f43 /npc/guild/gldfunc_dunsw.txt | |
parent | 379d757aaf859c0cb511933d225c5b63da4c3003 (diff) | |
download | hercules-592b4e4006a4887dbe8ad384e7c4b276da2bbc4d.tar.gz hercules-592b4e4006a4887dbe8ad384e7c4b276da2bbc4d.tar.bz2 hercules-592b4e4006a4887dbe8ad384e7c4b276da2bbc4d.tar.xz hercules-592b4e4006a4887dbe8ad384e7c4b276da2bbc4d.zip |
removed stupid bug fix (it wasn't a bug, but you've made it a bug)
people report RC5 bugs, and u... doh..
u don't check the real bugs..
u gust go and fix...
it's WRONG!!!!!!!!!!!!!!!!!!!!!!!!
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@807 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild/gldfunc_dunsw.txt')
-rw-r--r-- | npc/guild/gldfunc_dunsw.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/npc/guild/gldfunc_dunsw.txt b/npc/guild/gldfunc_dunsw.txt index a2a853365..3c2f40fb4 100644 --- a/npc/guild/gldfunc_dunsw.txt +++ b/npc/guild/gldfunc_dunsw.txt @@ -4,7 +4,7 @@ //= jAthena - kalen (1.0) //= 1.1 by Akaru, ho|yAnge|X, and Valaris //===== Current Version: ===================================== -//= 1.2 +//= 1.3 //===== Compatible With: ===================================== //= eAthena 0.1+; RO Episode 4+ //===== Description: ========================================= @@ -16,7 +16,12 @@ //= arg(2): x1 coordinate for warp //= arg(3): y1 coordinate for warp //===== Additional Comments: ================================= -//= v1.2: All guild Dungeon Switch npcs use this function.[kobra_k88] +//= 1.2: All guild Dungeon Switch npcs use this function.[kobra_k88] +//= 1.3 Reverted back. Don't listen to ... people at forums + and check all bugs yourself! + Some not competent people try to change gld_dun -> gld_dun0 + IT is wrong, because we already supple "02","03",etc as suffix. + [Lupus] //============================================================ //================================================== @@ -31,7 +36,7 @@ function script F_GldDunSw { set @GID, GetCastleData(getarg(0)+".gat",1); if (getcharid(2) != @GID) goto L_NotGLead; - warp "gld_dun0"+getarg(1)+".gat",getarg(2),getarg(3); + warp "gld_dun"+getarg(1)+".gat",getarg(2),getarg(3); end; L_NotGLead: |