diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-31 16:38:47 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-31 16:38:47 +0000 |
commit | 8b63621196b61b105009b1ca40d208afb825dd7e (patch) | |
tree | 97bd12f093853259bd15a2be7373b9e05cd623e5 /src/map/pc.h | |
parent | 1ce8bd7486059d05b3953d2412dc060f316a9e06 (diff) | |
download | hercules-8b63621196b61b105009b1ca40d208afb825dd7e.tar.gz hercules-8b63621196b61b105009b1ca40d208afb825dd7e.tar.bz2 hercules-8b63621196b61b105009b1ca40d208afb825dd7e.tar.xz hercules-8b63621196b61b105009b1ca40d208afb825dd7e.zip |
Fixed SC_CRYSTALIZE where it stacks with other opt and ignore SC_WARMER.
Fixed weapon check in dual wielding where it doesn't function properly specially in checking with the dual-wield constants.
Added some Kagerou/Oboro skills.
(KO_KAIHOU,KO_ZENKAI,KO_GENWAKU,KO_IZAYOI)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16539 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 f7a821768..b4f10e02f 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -643,7 +643,7 @@ enum e_pc_permission { //Weapon check considering dual wielding. #define pc_check_weapontype(sd, type) ((type)&((sd)->status.weapon < MAX_WEAPON_TYPE? \ - 1<<(sd)->status.weapon:(1<<(sd)->weapontype1)|(1<<(sd)->weapontype2))) + 1<<(sd)->status.weapon:(1<<(sd)->weapontype1)|(1<<(sd)->weapontype2)|(1<<(sd)->status.weapon))) //Checks if the given class value corresponds to a player class. [Skotlex] //JOB_NOVICE isn't checked for class_ is supposed to be unsigned #define pcdb_checkid_sub(class_) \ |