mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Tank items should have delivery date
This commit is contained in:
parent
f28c65d32b
commit
7be88f4d33
1 changed files with 2 additions and 2 deletions
|
@ -33,13 +33,13 @@ class CatalogTankItem(CatalogItem.CatalogItem):
|
|||
if self.maxTank <= avatar.getMaxFishTank():
|
||||
return ToontownGlobals.P_ItemUnneeded
|
||||
avatar.b_setMaxFishTank(self.maxTank)
|
||||
return ToontownGlobals.P_ItemAvailable
|
||||
return ToontownGlobals.P_ItemOnOrder
|
||||
|
||||
def isGift(self):
|
||||
return 0
|
||||
|
||||
def getDeliveryTime(self):
|
||||
return 0
|
||||
return 1
|
||||
|
||||
def getPicture(self, avatar):
|
||||
gui = loader.loadModel('phase_4/models/gui/fishingGui')
|
||||
|
|
Loading…
Reference in a new issue