diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-01 18:36:27 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-01 18:36:27 +0000 |
commit | 8deb4dfef1f3a6b81a93af20eccc7026b308dcc0 (patch) | |
tree | ffca29d20b5f246146878c6daf0a616da7e29068 /src/map/pc.h | |
parent | f1586c89c9aed81d85d72ebbe0a0829f9a9237e9 (diff) | |
download | hercules-8deb4dfef1f3a6b81a93af20eccc7026b308dcc0.tar.gz hercules-8deb4dfef1f3a6b81a93af20eccc7026b308dcc0.tar.bz2 hercules-8deb4dfef1f3a6b81a93af20eccc7026b308dcc0.tar.xz hercules-8deb4dfef1f3a6b81a93af20eccc7026b308dcc0.zip |
* Fixed bAutoSpellOnSkill bonuses could not be chained (bugreport:4421, since r13596).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14536 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 4a9c17f3a..c6c6f4801 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -55,6 +55,7 @@ struct weapon_data { struct s_autospell { short id, lv, rate, card_id, flag; + bool lock; // bAutoSpellOnSkill: blocks autospell from triggering again, while being executed }; struct s_addeffect { @@ -134,7 +135,6 @@ struct map_session_data { short pmap; // Previous map on Map Change struct guild *gmaster_flag; unsigned int bg_id; - unsigned skillonskill : 1; unsigned short user_font; unsigned short autobonus; //flag to indicate if an autobonus is activated. [Inkfish] } state; |