- Fixed mob_max_skilllvl being capped to 11!

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6643 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-05-18 17:49:15 +00:00
parent e5f005cc1d
commit 55d19e5598
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ 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/05/18
* Fixed mob_max_skilllvl being capped to 11! [Skotlex]
* Rewrote/cleaned up several functions in storage.c [Skotlex]
* Optimized pc_additem comparisons to account for items with more than four
slots. [Skotlex]

View File

@ -4467,8 +4467,8 @@ void battle_validate_conf() {
battle_config.mob_remove_delay = 15000;
if (battle_config.dynamic_mobs > 1)
battle_config.dynamic_mobs = 1; //The flag will be used in assignations
if (battle_config.mob_max_skilllvl> 11 || battle_config.mob_max_skilllvl<1 )
battle_config.mob_max_skilllvl = 11;
if (battle_config.mob_max_skilllvl> MAX_SKILL_LEVEL || battle_config.mob_max_skilllvl<1 )
battle_config.mob_max_skilllvl = MAX_SKILL_LEVEL;
if (battle_config.firewall_hits_on_undead < 1)
battle_config.firewall_hits_on_undead = 1;