Remove line indicating XP gain on kills

This commit is contained in:
kinther 2025-08-14 12:37:49 -07:00
parent fa1af68fdf
commit 8d46830d85

View file

@ -309,11 +309,6 @@ static void perform_group_gain(struct char_data *ch, int base,
share = MIN(CONFIG_MAX_EXP_GAIN, MAX(1, base));
if (share > 1)
send_to_char(ch, "You receive your share of experience -- %d points.\r\n", share);
else
send_to_char(ch, "You receive your share of experience -- one measly little point!\r\n");
change_alignment(ch, victim);
}
@ -357,11 +352,6 @@ static void solo_gain(struct char_data *ch, struct char_data *victim)
exp = MAX(exp, 1);
if (exp > 1)
send_to_char(ch, "You receive %d experience points.\r\n", exp);
else
send_to_char(ch, "You receive one lousy experience point.\r\n");
change_alignment(ch, victim);
}