From 4f4054a751dc0639349509d582993a32db68b524 Mon Sep 17 00:00:00 2001 From: John Cote Date: Sat, 11 Jan 2020 10:59:05 -0500 Subject: [PATCH] toon: fix skill credit label --- toontown/toon/InventoryNew.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: