diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-22 10:01:13 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-22 10:01:13 +0000 |
commit | 6a2a8a7d451f394b132383b20e499985d026aaae (patch) | |
tree | b7ba6c56985fee723f214dc68a30c12473204acb /src/map/map.h | |
parent | e18d01b53500c4d4744cfe31cacaed56f414f0da (diff) | |
download | hercules-6a2a8a7d451f394b132383b20e499985d026aaae.tar.gz hercules-6a2a8a7d451f394b132383b20e499985d026aaae.tar.bz2 hercules-6a2a8a7d451f394b132383b20e499985d026aaae.tar.xz hercules-6a2a8a7d451f394b132383b20e499985d026aaae.zip |
* Check if the player has been authentified by the char server before clearing any timers in map_quit
* Added eventtimercount and timerskill_count
* Added sc_count check in skill_stop_dancing
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@723 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 5067d6928..79926903c 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -210,6 +210,7 @@ struct map_session_data { struct skill_unit_group skillunit[MAX_SKILLUNITGROUP]; struct skill_unit_group_tickset skillunittick[MAX_SKILLUNITGROUPTICKSET]; struct skill_timerskill skilltimerskill[MAX_SKILLTIMERSKILL]; + unsigned short timerskill_count; // [celest] int cloneskill_id,cloneskill_lv; int potion_hp,potion_sp,potion_per_hp,potion_per_sp; @@ -319,6 +320,7 @@ struct map_session_data { char eventqueue[MAX_EVENTQUEUE][50]; int eventtimer[MAX_EVENTTIMER]; + unsigned short eventcount; // [celest] int last_skillid,last_skilllv; // Added by RoVeRT |