diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 7b86b2dba..0148af9e0 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ 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/01
+ * Should have fixed the cooking sets not displaying all cooking available
+ items. [Skotlex]
* Figured out and fixed the issue with Volcano/Deluge/Violent Gale not
really working. Thanks to Mpeg for noting it out. [Skotlex]
* Modified Self Destruction, so that Marine Spheres in non-versus maps will
diff --git a/src/map/skill.c b/src/map/skill.c index 5ab0754dd..c7ea8ef5d 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -10175,7 +10175,7 @@ int skill_can_produce_mix (struct map_session_data *sd, int nameid, int trigger, if(skill_produce_db[i].itemlv!=trigger) return 0; } else if(trigger>10) { // Food (any item level between 10 and 20 will do) - if(skill_produce_db[i].itemlv<=10) + if(skill_produce_db[i].itemlv>10 && skill_produce_db[i].itemlv<=20) return 0; } else { // Weapon (itemlv must be higher or equal) if(skill_produce_db[i].itemlv>trigger) |