Browse Source

Fixed Venom Splasher renewal damage ratio

Daegaladh 4 years ago
parent
commit
79a36e71d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/map/battle.cpp

+ 1 - 1
src/map/battle.cpp

@@ -3992,7 +3992,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list *
 			break;
 			break;
 		case AS_SPLASHER:
 		case AS_SPLASHER:
 #ifdef RENEWAL
 #ifdef RENEWAL
-			skillratio += 400 + 100 * skill_lv;
+			skillratio += -100 + 400 + 100 * skill_lv;
 #else
 #else
 			skillratio += 400 + 50 * skill_lv;
 			skillratio += 400 + 50 * skill_lv;
 #endif
 #endif