diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-10 18:57:14 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-10 18:57:14 +0000 |
commit | 91f9047dcf18bdccda51c1066d6d0d76ababa61c (patch) | |
tree | 2b24b88dc2e860ac737c0cca72e9035586e704fe /src/map/pc.h | |
parent | 9a87c5b5ad061c2f92b87feadfd8baa6ad661ba5 (diff) | |
download | hercules-91f9047dcf18bdccda51c1066d6d0d76ababa61c.tar.gz hercules-91f9047dcf18bdccda51c1066d6d0d76ababa61c.tar.bz2 hercules-91f9047dcf18bdccda51c1066d6d0d76ababa61c.tar.xz hercules-91f9047dcf18bdccda51c1066d6d0d76ababa61c.zip |
Added an item_delay database usable for item-specific use delays.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14455 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index da666f9a7..0c3cb89eb 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -204,6 +204,11 @@ struct map_session_data { unsigned int cantalk_tick; unsigned int cansendmail_tick; // [Mail System Flood Protection] unsigned int ks_floodprotect_tick; // [Kill Steal Protection] + + struct { + int nameid; + unsigned int tick; + } item_delay[MAX_ITEMDELAYS]; // [Paradox924X] short weapontype1,weapontype2; short disguise; // [Valaris] @@ -404,7 +409,6 @@ struct map_session_data { const char* debug_func; }; - //Update this max as necessary. 54 is the value needed for Super Baby currently #define MAX_SKILL_TREE 54 //Total number of classes (for data storage) |