summaryrefslogtreecommitdiff
path: root/npc/other
diff options
context:
space:
mode:
authorSinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-10-05 16:32:22 +0000
committerSinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-10-05 16:32:22 +0000
commit2c7acfa688d75ef62f277f2d5f93195cae98934e (patch)
treefb3576eb46bda9b831feab724bb9f22311a7fa56 /npc/other
parent038ea45369370d3c2c1dfb8912e7de9086ccf32b (diff)
downloadhercules-2c7acfa688d75ef62f277f2d5f93195cae98934e.tar.gz
hercules-2c7acfa688d75ef62f277f2d5f93195cae98934e.tar.bz2
hercules-2c7acfa688d75ef62f277f2d5f93195cae98934e.tar.xz
hercules-2c7acfa688d75ef62f277f2d5f93195cae98934e.zip
* Fixed a bug in Hugel Bingo which caused wrong rotation in player locations.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11363 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r--npc/other/hugel_bingo.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/other/hugel_bingo.txt b/npc/other/hugel_bingo.txt
index dc974725b..33423a77c 100644
--- a/npc/other/hugel_bingo.txt
+++ b/npc/other/hugel_bingo.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= SinSloth
//===== Current Version: =====================================
-//= 1.4
+//= 1.5
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
@@ -15,6 +15,7 @@
//= 1.3 - Fixed a bug where an AFK-player wasn't warped out of the game,
//= 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]
//============================================================
que_bingo,48,84,5 script Bingo Waiting Room 124,{
@@ -164,6 +165,7 @@ OnTimer203000:
OnTimer204000:
disablenpc "out3#bingo";
set $hu_bingoa,0;
+ set $hu_bingob,0;
donpcevent "Bingo Waiting Room::OnStart";
end;
}
@@ -914,7 +916,7 @@ OnTouch:
case 4: warp "que_bingo",45,121; break;
}
set $hu_bingob,$hu_bingob +1;
- if($hu_bingob == 4) set $hu_bingob,0;
+ if($hu_bingob == 5) set $hu_bingob,0;
end;
}