diff options
author | Yommy <Yommy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-10 00:10:49 +0000 |
---|---|---|
committer | Yommy <Yommy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-10 00:10:49 +0000 |
commit | f19405698bcb66465b388535cba3aedcd54f9fbf (patch) | |
tree | 4e610ef4c8ff062bbdbe2a7007cac8233d111c35 /npc | |
parent | dcd8fb9724a5a981a6b0c171045b8733a6be6a87 (diff) | |
download | hercules-f19405698bcb66465b388535cba3aedcd54f9fbf.tar.gz hercules-f19405698bcb66465b388535cba3aedcd54f9fbf.tar.bz2 hercules-f19405698bcb66465b388535cba3aedcd54f9fbf.tar.xz hercules-f19405698bcb66465b388535cba3aedcd54f9fbf.zip |
fixed bug reports (bugreport:1556 bugreport:1913 bugreport:1839)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13061 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 3 | ||||
-rw-r--r-- | npc/other/hugel_bingo.txt | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 6f4492479..6b6abf211 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -2,8 +2,9 @@ ====== 2008/08/10 * Fixed: several typos (bugreport:2029 bugreport:2023) [Yommy] + * Fixed: hugel bingo quest (bugreport:1556) [Yommy] 2008/08/08 - * Rev. 103053 Removed unofficial inn maid from Alberta. [L0en_W0lf] + * Rev. 13053 Removed unofficial inn maid from Alberta. [L0ne_W0lf] * Rev. 13052 Slew up NPC bug fixes and other updates. [L0ne_W0lf] - Corrected item checking in Dancer job quest. (buggreport:1987) - Fixed infinite dialog in novice grounds. (buggreport:1998) diff --git a/npc/other/hugel_bingo.txt b/npc/other/hugel_bingo.txt index 10ad4e1ee..651ceaa0c 100644 --- a/npc/other/hugel_bingo.txt +++ b/npc/other/hugel_bingo.txt @@ -16,6 +16,7 @@ //= preventing players from launching another. [SinSloth] //= 1.4 - Fixed a minor bug added in the last revision. [SinSloth] //= 1.5 - Applied a fix to players locations which were not rotating properly. [SinSloth] +//= 1.6- Removed nescesity to win to proceed with quest [Yommy] //============================================================ que_bingo,48,84,5 script Bingo Waiting Room 124,{ @@ -883,7 +884,7 @@ OnInit: end; OnTouch: - if(strcharinfo(0) == $@bingowinner$ && hg_ma1 == 6) warp "que_bingo",45,186; + if(hg_ma1 == 6) warp "que_bingo",45,186; else warp "que_bingo",40,121; end; } |