mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
correct delivery times
This commit is contained in:
parent
7ef12e079a
commit
14ff727052
6 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -30,4 +30,4 @@ class CatalogSurfaceItem(CatalogAtticItem.CatalogAtticItem):
|
|||
return retcode
|
||||
|
||||
def getDeliveryTime(self):
|
||||
return 1
|
||||
return 60
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue