From 83301cc59a75f14bea4b73136e7dffc396f37fc3 Mon Sep 17 00:00:00 2001 From: AnnieRuru Date: Fri, 20 Nov 2015 18:53:14 +0800 Subject: *Show the katar critical bonus in player status window - this is unofficial behavior, so it has to be in battle config Related to #579 Closes #882 as merged Signed-off-by: Haru --- src/map/battle.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/map/battle.c') diff --git a/src/map/battle.c b/src/map/battle.c index 1c3817a31..a040d443b 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -4558,8 +4558,8 @@ struct Damage battle_calc_weapon_attack(struct block_list *src,struct block_list { short cri = sstatus->cri; if (sd) { - // Check for katar here as katar crit bonus should not be displayed - if (sd->status.weapon == W_KATAR) { + // if show_katar_crit_bonus is enabled, it already done the calculation in status.c + if (!battle_config.show_katar_crit_bonus && sd->status.weapon == W_KATAR) { cri <<= 1; } @@ -7078,6 +7078,7 @@ static const struct battle_data { { "mob_remove_damaged", &battle_config.mob_remove_damaged, 1, 0, 1, }, { "show_hp_sp_drain", &battle_config.show_hp_sp_drain, 0, 0, 1, }, { "show_hp_sp_gain", &battle_config.show_hp_sp_gain, 1, 0, 1, }, + { "show_katar_crit_bonus", &battle_config.show_katar_crit_bonus, 0, 0, 1, }, { "mob_npc_event_type", &battle_config.mob_npc_event_type, 1, 0, 1, }, { "character_size", &battle_config.character_size, 1|2, 0, 1|2, }, { "retaliate_to_master", &battle_config.retaliate_to_master, 1, 0, 1, }, -- cgit v1.2.3-60-g2f50