PennMUSH 1.8.3p11
authorRick L Bird <nveid@yahoo.com>
Fri, 6 May 2011 22:09:11 +0000 (18:09 -0400)
committerRick L Bird <nveid@yahoo.com>
Fri, 6 May 2011 22:09:11 +0000 (18:09 -0400)
Author: talvo@talvo.com <talvo@talvo.com@ba372814-4f39-11de-9ad6-1127a62b9fcd>
Date:   Sat Dec 26 22:22:45 2009 +0000

    Issue 180, 'Not enough money to queue commands' msg includes object
    attempting to queue
Fixes #169

src/cque.c

index baa44af532d018039b2a3b24aae55c7054735bcd..9047de5c9438ebfe2cce35b416fb4a40972aa3c4 100644 (file)
@@ -230,7 +230,7 @@ pay_queue(dbref player, const char *command)
       (QUEUE_LOSS ? ((get_random32(0, QUEUE_LOSS - 1) == 0) ? 1 : 0) :
        0);
   if (!quiet_payfor(player, estcost)) {
-    notify(Owner(player), T("Not enough money to queue command."));
+    notify_format(Owner(player), T("Not enough money to queue command for %s(#%d)."), Name(player), player);
     return 0;
   }
   if (!NoPay(player) && (estcost != QUEUE_COST)