mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 19:52:37 -06:00
Increased items on-order limit.
This commit is contained in:
parent
dedd654453
commit
4ad535659f
3 changed files with 4 additions and 3 deletions
|
@ -181,6 +181,7 @@ class ToontownClientRepository(OTPClientRepository.OTPClientRepository):
|
||||||
TexturePool.garbageCollect()
|
TexturePool.garbageCollect()
|
||||||
self.sendSetAvatarIdMsg(0)
|
self.sendSetAvatarIdMsg(0)
|
||||||
self.clearFriendState()
|
self.clearFriendState()
|
||||||
|
self.startHeartbeat()
|
||||||
if self.music == None and base.musicManagerIsValid:
|
if self.music == None and base.musicManagerIsValid:
|
||||||
self.music = base.musicManager.getSound('phase_3/audio/bgm/tt_theme.ogg')
|
self.music = base.musicManager.getSound('phase_3/audio/bgm/tt_theme.ogg')
|
||||||
if self.music:
|
if self.music:
|
||||||
|
|
|
@ -126,7 +126,7 @@ class DistributedPhoneAI(DistributedFurnitureItemAI):
|
||||||
av.takeMoney(item.getPrice(priceType))
|
av.takeMoney(item.getPrice(priceType))
|
||||||
|
|
||||||
if item.getDeliveryTime():
|
if item.getDeliveryTime():
|
||||||
if len(av.onOrder) > 5:
|
if len(av.onOrder) > 25:
|
||||||
self.sendUpdateToAvatarId(avId, 'requestPurchaseResponse', [context, ToontownGlobals.P_OnOrderListFull])
|
self.sendUpdateToAvatarId(avId, 'requestPurchaseResponse', [context, ToontownGlobals.P_OnOrderListFull])
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ SpeedwayCameraFar = 8000.0
|
||||||
SpeedwayCameraNear = 1.0
|
SpeedwayCameraNear = 1.0
|
||||||
MaxMailboxContents = 60
|
MaxMailboxContents = 60
|
||||||
MaxHouseItems = 250
|
MaxHouseItems = 250
|
||||||
MaxAccessories = 50
|
MaxAccessories = 75
|
||||||
ExtraDeletedItems = 5
|
ExtraDeletedItems = 5
|
||||||
DeletedItemLifetime = 7 * 24 * 60
|
DeletedItemLifetime = 7 * 24 * 60
|
||||||
CatalogNumWeeksPerSeries = 13
|
CatalogNumWeeksPerSeries = 13
|
||||||
|
@ -1636,4 +1636,4 @@ PropIdToColor = [
|
||||||
(0.196, 0.917, 0.929, 1)
|
(0.196, 0.917, 0.929, 1)
|
||||||
]
|
]
|
||||||
|
|
||||||
BugReportSite = 'https://bugs.launchpad.net/toontown-united/+filebug'
|
BugReportSite = 'https://bugs.launchpad.net/toontown-united/+filebug'
|
||||||
|
|
Loading…
Reference in a new issue