From 5aa4c9553f8cd6bf4e15d7e53b1c7ddc5ee3ed10 Mon Sep 17 00:00:00 2001 From: sjonfjel Date: Mon, 11 Feb 2013 19:38:30 +0000 Subject: [PATCH] Bugfiks 2 --- text_based.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text_based.py b/text_based.py index 3a9266f..0d21a5b 100755 --- a/text_based.py +++ b/text_based.py @@ -1208,7 +1208,7 @@ much money you're due in credits for the purchase when prompted. if isinstance(thing, Product): self.printc("%d of %s registered" % (amount, thing.name)) - self.price += self.input_int('Price a piece? ', (1,100000), default=thing.price) * amount + self.price += self.input_int('What did you pay a piece? ', (1,100000), default=thing.price) * amount # once we get something in the # purchase, we want to protect the