Corrected a mistake in DK_SERVANTWEAPON_ATK formula. (#8157)

Follow-up fa71d1012d

Thanks to @Tolimatoi
This commit is contained in:
Atemo 2024-03-02 19:59:45 +01:00 committed by GitHub
parent 9139a21adc
commit f34a47ae24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5432,7 +5432,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list *
skillratio += skillratio * sc->getSCE(SC_LIGHTOFSTAR)->val2 / 100;
break;
case DK_SERVANTWEAPON_ATK:
skillratio += -100 + 450 + 800 * skill_lv;
skillratio += -100 + 600 + 850 * skill_lv;
skillratio += 5 * sstatus->pow;
RE_LVL_DMOD(100);
break;