mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-24 05:06:33 +01:00
Remove line indicating XP gain on kills
This commit is contained in:
parent
fa1af68fdf
commit
8d46830d85
1 changed files with 0 additions and 10 deletions
10
src/fight.c
10
src/fight.c
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue