Bugfiks 2
This commit is contained in:
parent
3dc42b6565
commit
5aa4c9553f
|
@ -1208,7 +1208,7 @@ much money you're due in credits for the purchase when prompted.
|
||||||
|
|
||||||
if isinstance(thing, Product):
|
if isinstance(thing, Product):
|
||||||
self.printc("%d of %s registered" % (amount, thing.name))
|
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
|
# once we get something in the
|
||||||
# purchase, we want to protect the
|
# purchase, we want to protect the
|
||||||
|
|
Loading…
Reference in New Issue