diff --git a/toontown/toon/InventoryNew.py b/toontown/toon/InventoryNew.py index 3d867da..d9fe2c4 100644 --- a/toontown/toon/InventoryNew.py +++ b/toontown/toon/InventoryNew.py @@ -327,9 +327,9 @@ class InventoryNew(InventoryBase.InventoryBase, DirectFrame): credit = min(credit, maxCredit) credit = int(credit * 10 + 0.5) if credit % 10 == 0: - credit /= 10 + credit //= 10 else: - credit /= 10.0 + credit //= 10.0 if self.detailCredit == credit: return if credit != None: