From: Ari Johnson Date: Mon, 2 Feb 2015 16:02:31 +0000 (-0500) Subject: Allow NoPay players to receive pennies X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=cf8151260afe81e8adccb7267a224e33fd34b16c;p=cobramush.git Allow NoPay players to receive pennies --- diff --git a/src/predicat.c b/src/predicat.c index 73ccee7..b483a95 100644 --- a/src/predicat.c +++ b/src/predicat.c @@ -534,10 +534,6 @@ can_pay_fees(dbref who, int pennies) void giveto(dbref who, int pennies) { - /* some people don't need pennies */ - if (NoPay(who)) - return; - who = Owner(who); if ((Pennies(who) + pennies) > Max_Pennies(who)) s_Pennies(who, Max_Pennies(who));