From cf8151260afe81e8adccb7267a224e33fd34b16c Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Mon, 2 Feb 2015 11:02:31 -0500 Subject: [PATCH] Allow NoPay players to receive pennies --- src/predicat.c | 4 ---- 1 file changed, 4 deletions(-) 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)); -- 2.30.2