From cd3743018b3cba6ed278d6461c6ae066d62f16db Mon Sep 17 00:00:00 2001 From: kinther Date: Sun, 28 Dec 2025 20:58:06 -0800 Subject: [PATCH] Stat command update for saving throws --- src/act.wizard.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/act.wizard.c b/src/act.wizard.c index ba56972..4413b97 100644 --- a/src/act.wizard.c +++ b/src/act.wizard.c @@ -1827,13 +1827,13 @@ static void do_stat_character(struct char_data *ch, struct char_data *k) GET_DEX(k), GET_CON(k), GET_CHA(k)); stat_table_row_fmt(ch, "Saving Throws", - "Str %+d (%+d) Dex %+d (%+d) Con %+d (%+d) Int %+d (%+d) Wis %+d (%+d) Cha %+d (%+d)", - get_save_mod(k, ABIL_STR), GET_SAVE(k, ABIL_STR), - get_save_mod(k, ABIL_DEX), GET_SAVE(k, ABIL_DEX), - get_save_mod(k, ABIL_CON), GET_SAVE(k, ABIL_CON), - get_save_mod(k, ABIL_INT), GET_SAVE(k, ABIL_INT), - get_save_mod(k, ABIL_WIS), GET_SAVE(k, ABIL_WIS), - get_save_mod(k, ABIL_CHA), GET_SAVE(k, ABIL_CHA)); + "Str %+d Dex %+d Con %+d Int %+d Wis %+d Cha %+d", + get_save_mod(k, ABIL_STR), + get_save_mod(k, ABIL_DEX), + get_save_mod(k, ABIL_CON), + get_save_mod(k, ABIL_INT), + get_save_mod(k, ABIL_WIS), + get_save_mod(k, ABIL_CHA)); stat_table_row_fmt(ch, "Vitals", "HP %d/%d (+%d) | Mana %d/%d (+%d) | Move %d/%d (+%d)",