Allow NoPay players to receive pennies
authorAri Johnson <ari@theari.com>
Mon, 2 Feb 2015 16:02:31 +0000 (11:02 -0500)
committerAri Johnson <ari@theari.com>
Mon, 2 Feb 2015 16:02:31 +0000 (11:02 -0500)
src/predicat.c

index 73ccee775dc34aaac32d87c00d9b2f036c572bf7..b483a956a2de8e78c04926a7dc8f293b1f161da6 100644 (file)
@@ -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));