mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Enable parties, fix party cost and fix party planner crash
This commit is contained in:
parent
8e0724a553
commit
c42511f670
5 changed files with 5 additions and 5 deletions
|
@ -32,7 +32,7 @@ punchline-place-building-chance 100.0
|
|||
want-fishing #f
|
||||
want-housing #f
|
||||
want-pets #f
|
||||
want-parties #f
|
||||
want-parties #t
|
||||
|
||||
# Optional:
|
||||
want-talkative-tyler #f
|
||||
|
|
|
@ -21,7 +21,7 @@ dc-file astron/dclass/otp.dc
|
|||
|
||||
# Core features:
|
||||
want-pets #f
|
||||
want-parties #f
|
||||
want-parties #t
|
||||
want-cogdominiums #f
|
||||
want-achievements #f
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ shard-mid-pop 150
|
|||
# Core features:
|
||||
want-housing #t
|
||||
want-pets #f
|
||||
want-parties #f
|
||||
want-parties #t
|
||||
want-cogdominiums #f
|
||||
want-achievements #f
|
||||
boarding-group-merges #t
|
||||
|
|
|
@ -231,7 +231,7 @@ PlayGroundToPartyClockColors = {'the_burrrgh': (53.0 / 255.0,
|
|||
PartyGridUnitLength = [14.4, 14.6]
|
||||
PartyGridHeadingConverter = 15.0
|
||||
PartyGridToPandaOffset = (-PartyGridUnitLength[0] * PartyEditorGridSize[0] / 2.0, -PartyGridUnitLength[1] * PartyEditorGridSize[1] / 2.0)
|
||||
PartyCostMultiplier = 0 # ALPHA ONLY - remove after parties are legit
|
||||
PartyCostMultiplier = 1
|
||||
MinimumPartyCost = 100 * PartyCostMultiplier
|
||||
ActivityInformationDict = {ActivityIds.PartyJukebox: {'cost': int(50 * PartyCostMultiplier),
|
||||
'gridsize': (1, 1),
|
||||
|
|
|
@ -15,7 +15,7 @@ from otp.otpbase import OTPLocalizer
|
|||
from toontown.friends.FriendsListPanel import determineFriendName
|
||||
from toontown.nametag.Nametag import Nametag
|
||||
from toontown.nametag.NametagFloat2d import *
|
||||
from toontown.nametag.NametagGlobals import *
|
||||
from toontown.nametag import NametagGlobals
|
||||
from toontown.nametag.NametagGroup import NametagGroup
|
||||
from toontown.parties import PartyGlobals
|
||||
from toontown.parties import PartyUtils
|
||||
|
|
Loading…
Reference in a new issue