From 8505374c49f704f4a0bfc5c2fcc2ede3c8dacf1b Mon Sep 17 00:00:00 2001 From: Rick L Bird Date: Fri, 6 May 2011 18:09:11 -0400 Subject: [PATCH] PennMUSH 1.8.3p11 Author: talvo@talvo.com 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cque.c b/src/cque.c index baa44af..9047de5 100644 --- a/src/cque.c +++ b/src/cque.c @@ -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) -- 2.30.2