Kaynağa Gözat

- Corrected the 20 lvl diff 15% exp bonus on pk_mode servers. Thanks to Vayu for pointing it out.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6698 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 yıl önce
ebeveyn
işleme
8e1cd35c5a
2 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. 2 0
      Changelog-Trunk.txt
  2. 2 1
      src/map/mob.c

+ 2 - 0
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/05/22
+	* Corrected the 20 lvl diff 15% exp bonus on pk_mode servers. Thanks to
+	  Vayu for pointing it out. [Skotlex]
 	* status_get_sc_tick will now use directly Stun's formula rather than
 	  invoking the status sc chance once. [Skotlex]
 	* Fixed a possible null pointer in script command misc_effect [Skotlex]

+ 2 - 1
src/map/mob.c

@@ -1818,7 +1818,8 @@ int mob_damage(struct block_list *src,struct mob_data *md,int damage,int type)
 				per += per*sd->expaddrace[race]/100.;	
 				per += per*sd->expaddrace[mode&MD_BOSS?10:11]/100.;
 		}
-		if (battle_config.pk_mode && (md->db->lv - tmpsd[i]->status.base_level >= 20))
+		if (battle_config.pk_mode &&
+			(int)(md->db->lv - tmpsd[i]->status.base_level) >= 20) //Needed due to unsigned checks
 			per *= 1.15;	// pk_mode additional exp if monster >20 levels [Valaris]	
 		
 		//SG additional exp from Blessings [Komurka] - probably can be optimalized ^^;;