From 61a317db6b2d8912e3b19a0ad9b755062223aa9b Mon Sep 17 00:00:00 2001 From: akirschbaum Date: Wed, 9 Mar 2005 20:12:45 +0000 Subject: [PATCH] Fix spelling error. git-svn-id: svn://svn.code.sf.net/p/crossfire/code/trunk/maps@3110 282e977c-c81d-0410-88c4-b93c2d0d6712 --- python/IPO/banksay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/IPO/banksay.py b/python/IPO/banksay.py index b1945cb8f..5cfe963b9 100644 --- a/python/IPO/banksay.py +++ b/python/IPO/banksay.py @@ -63,7 +63,7 @@ elif text[0] == 'deposit': if len(text)==2: if (CFPython.PayAmount(activator, (int(text[1])*exchange_rate)*fees)): bank.deposit(activatorname, int(text[1])) - message = '%d recieved, %d imperials deposited to bank account. %s' \ + message = '%d received, %d imperials deposited to bank account. %s' \ %((int(text[1])*(exchange_rate/50))*fees,int(text[1]),random.choice(thanks_message)) else: message = 'You would need %d gold'%((int(text[1])*(exchange_rate/10))*fees)