Procházet zdrojové kódy

Fixed SN_SHARPSHOOTING doing 100% atk less damage than it should, bugreport:1654

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12802 54d463be-8e91-2dee-dedb-b68131a5f0ec
shadow před 17 roky
rodič
revize
233d15c130
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/battle.c

+ 1 - 0
Changelog-Trunk.txt

@@ -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.
 
 2008/06/09
+	* Fixed SN_SHARPSHOOTING doing 100% atk less damage than it should, bugreport:1654
 	* Fixed Active Guild skills not working when WoE is OFF, follow up on r12770, bugreport:1653 and bugreport:1637
 	* Fixed Fire Pillar (and any future splash damage magical trap) not working on Land Protector.
 	* Fixed reject sword having a infinite duration, bugreport:695 [Brainstorm]

+ 1 - 1
src/map/battle.c

@@ -1466,7 +1466,7 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src,struct blo
 					skillratio += 40*skill_lv-60;
 					break;
 				case SN_SHARPSHOOTING:
-					skillratio += 50*skill_lv;
+					skillratio += 100+50*skill_lv;
 					break;
 				case CG_ARROWVULCAN:
 					skillratio += 100+100*skill_lv;