Enable parties, fix party cost and fix party planner crash

This commit is contained in:
Daniel 2015-04-20 18:15:19 +03:00
parent 8e0724a553
commit c42511f670
5 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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),

View file

@ -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