diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-19 18:58:45 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-19 18:58:45 +0000 |
commit | 97a04116dfc0347d15ba8f87f4f5ba614b548128 (patch) | |
tree | b9193e877a346d87c2fa707499a9b8e124ed02ea /src/map/itemdb.c | |
parent | 6617c3d72fbb5a1ae05083348a64c3cd86e42a9b (diff) | |
download | hercules-97a04116dfc0347d15ba8f87f4f5ba614b548128.tar.gz hercules-97a04116dfc0347d15ba8f87f4f5ba614b548128.tar.bz2 hercules-97a04116dfc0347d15ba8f87f4f5ba614b548128.tar.xz hercules-97a04116dfc0347d15ba8f87f4f5ba614b548128.zip |
- Fixed job-mask 0x100000 in the item_db enabling Dancers/Bards to use the items (0x80000 should be for them and 0x100000 should be currently unused)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8368 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index c47aaf90a..f4de37cfa 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -190,8 +190,9 @@ static void itemdb_jobid2mapid(unsigned int *bclass, unsigned int jobmask) bclass[2] |= 1<<MAPID_MERCHANT;
if (jobmask & 1<<JOB_BARD)
bclass[2] |= 1<<MAPID_ARCHER;
- if (jobmask & 1<<JOB_DANCER)
- bclass[2] |= 1<<MAPID_ARCHER;
+// Bard/Dancer share the same slot now.
+// if (jobmask & 1<<JOB_DANCER)
+// bclass[2] |= 1<<MAPID_ARCHER;
if (jobmask & 1<<JOB_ROGUE)
bclass[2] |= 1<<MAPID_THIEF;
//Special classes that don't fit above.
|