diff --git a/toontown/catalog/CatalogAccessoryItem.py b/toontown/catalog/CatalogAccessoryItem.py index e71d6544..d8f371e1 100755 --- a/toontown/catalog/CatalogAccessoryItem.py +++ b/toontown/catalog/CatalogAccessoryItem.py @@ -174,6 +174,9 @@ class CatalogAccessoryItem(CatalogItem.CatalogItem): avatar.d_catalogGenAccessories() return ToontownGlobals.P_ItemAvailable + def getDeliveryTime(self): + return 60 + def getPicture(self, avatar): model = self.loadModel() spin = 1 diff --git a/toontown/catalog/CatalogClothingItem.py b/toontown/catalog/CatalogClothingItem.py index c13d5362..fad58596 100755 --- a/toontown/catalog/CatalogClothingItem.py +++ b/toontown/catalog/CatalogClothingItem.py @@ -417,7 +417,7 @@ class CatalogClothingItem(CatalogItem.CatalogItem): return ToontownGlobals.P_ItemAvailable def getDeliveryTime(self): - return 1 + return 60 def getPicture(self, avatar): from toontown.toon import Toon diff --git a/toontown/catalog/CatalogFurnitureItem.py b/toontown/catalog/CatalogFurnitureItem.py index c76d35fd..268ad292 100755 --- a/toontown/catalog/CatalogFurnitureItem.py +++ b/toontown/catalog/CatalogFurnitureItem.py @@ -1014,7 +1014,7 @@ class CatalogFurnitureItem(CatalogAtticItem.CatalogAtticItem): return retcode def getDeliveryTime(self): - return 1 + return 24 * 60 def getPicture(self, avatar): model = self.loadModel(animate=0) diff --git a/toontown/catalog/CatalogPoleItem.py b/toontown/catalog/CatalogPoleItem.py index 294bb23e..5a41d897 100755 --- a/toontown/catalog/CatalogPoleItem.py +++ b/toontown/catalog/CatalogPoleItem.py @@ -41,7 +41,7 @@ class CatalogPoleItem(CatalogItem.CatalogItem): return 0 def getDeliveryTime(self): - return 1 + return 24 * 60 def getPicture(self, avatar): rodPath = FishGlobals.RodFileDict.get(self.rodId) diff --git a/toontown/catalog/CatalogSurfaceItem.py b/toontown/catalog/CatalogSurfaceItem.py index 97f49aca..83d6ac54 100755 --- a/toontown/catalog/CatalogSurfaceItem.py +++ b/toontown/catalog/CatalogSurfaceItem.py @@ -30,4 +30,4 @@ class CatalogSurfaceItem(CatalogAtticItem.CatalogAtticItem): return retcode def getDeliveryTime(self): - return 1 + return 60 diff --git a/toontown/catalog/CatalogWindowItem.py b/toontown/catalog/CatalogWindowItem.py index 192f97bf..e9d0308d 100755 --- a/toontown/catalog/CatalogWindowItem.py +++ b/toontown/catalog/CatalogWindowItem.py @@ -43,7 +43,7 @@ class CatalogWindowItem(CatalogAtticItem.CatalogAtticItem): return retcode def getDeliveryTime(self): - return 1 + return 4 * 60 def getPicture(self, avatar): frame = self.makeFrame()