From 10663a71dbbf5a05de9f8fddc9178fed70820395 Mon Sep 17 00:00:00 2001 From: temitchell Date: Thu, 9 Oct 2003 04:28:09 +0000 Subject: [PATCH] - oops forgot the decimal that made the serbice charges work. git-svn-id: svn://svn.code.sf.net/p/crossfire/code/trunk/maps@2386 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 2dcd9a759..ceacad717 100644 --- a/python/IPO/banksay.py +++ b/python/IPO/banksay.py @@ -44,7 +44,7 @@ service_charge=5 #service charges for transactions as a percent exchange_rate=10000 #exchange rate for silver (value 1) bankdatabase="ImperialBank_DB" -fees=(service_charge/100)+1 +fees=(service_charge/100.0)+1 bank = CFBank.CFBank(bankdatabase) text = string.split(CFPython.WhatIsMessage())