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 | |
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
-rw-r--r-- | Changelog-Trunk.txt | 3 | ||||
-rw-r--r-- | src/map/itemdb.c | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 885c3242b..57ea60cd1 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,9 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/08/19
+ * 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)
+ [Skotlex]
* Fixed a possible sigsegv when deleting lif under Mental Change [Toms]
* Fixed HAMI_CASTLE [Toms]
* Fixed HLIF_CHANGE [Toms]
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.
|