summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2017-08-21 20:52:14 +0200
committerHaru <haru@dotalux.com>2017-09-17 17:48:32 +0200
commit3745f1658aab4a5ffe504a5660b76402f2e2c6d6 (patch)
tree0af779ffdb40cd6251b942f34cb528c9fa91362b /src/map/pc.c
parent39cbf6038b769230aba1fc17b28893cefc147294 (diff)
downloadhercules-3745f1658aab4a5ffe504a5660b76402f2e2c6d6.tar.gz
hercules-3745f1658aab4a5ffe504a5660b76402f2e2c6d6.tar.bz2
hercules-3745f1658aab4a5ffe504a5660b76402f2e2c6d6.tar.xz
hercules-3745f1658aab4a5ffe504a5660b76402f2e2c6d6.zip
Fix a typo in the constant ITEMUPPER_THIRDUPPER
Was: ITEMUPPER_THURDUPPER Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 5948a3cf7..609a4ec56 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -5032,7 +5032,7 @@ int pc_isUseitem(struct map_session_data *sd,int n)
break;
}
// Upper third classes
- if ((item->class_upper & ITEMUPPER_THURDUPPER) != 0) {
+ if ((item->class_upper & ITEMUPPER_THIRDUPPER) != 0) {
if ((sd->job & JOBL_THIRD) != 0 && (sd->job & JOBL_UPPER) != 0)
break;
}