From 7f495670f2fa84d94e927936c0d84f6c57905406 Mon Sep 17 00:00:00 2001 From: Thomas Arp <357770+welcor@users.noreply.github.com> Date: Wed, 16 Nov 2022 23:08:51 +0100 Subject: [PATCH] Bugfix: the "rest" is added but was never subtracted. (#120) --- src/act.other.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/act.other.c b/src/act.other.c index d5bb798..37cc284 100644 --- a/src/act.other.c +++ b/src/act.other.c @@ -546,7 +546,6 @@ ACMD(do_split) if (rest) { send_to_char(ch, "%d coin%s %s not splitable, so you keep the money.\r\n", rest, (rest == 1) ? "" : "s", (rest == 1) ? "was" : "were"); - increase_gold(ch, rest); } } else { send_to_char(ch, "How many coins do you wish to split with your group?\r\n");