From 7fc08602b5dec7d2970d4cdccf05d530b627cd13 Mon Sep 17 00:00:00 2001 From: John Cote Date: Tue, 31 Dec 2019 14:13:04 -0500 Subject: [PATCH] Update GardenGlobals.py --- toontown/estate/GardenGlobals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toontown/estate/GardenGlobals.py b/toontown/estate/GardenGlobals.py index 994b034..0fd640f 100644 --- a/toontown/estate/GardenGlobals.py +++ b/toontown/estate/GardenGlobals.py @@ -298,7 +298,7 @@ if ACCELERATOR_USED_FROM_SHTIKER_BOOK: del PlantAttributes[202] def getTreeTrackAndLevel(typeIndex): - track = int(typeIndex / 7) + track = typeIndex // 7 level = typeIndex % 7 return (track, level)