Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed party meta #186

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions fortnitepy/party.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,14 +1080,18 @@ def __init__(self, party: 'PartyBase',
self.schema = {
'Default:PrimaryGameSessionId_s': '',
'Default:PartyState_s': 'BattleRoyaleView',
'Default:LobbyConnectionStarted_b': 'false',
'Default:MatchmakingResult_s': 'NoResults',
'Default:MatchmakingState_s': 'NotMatchmaking',
'Default:SessionIsCriticalMission_b': 'false',
'Default:ZoneTileIndex_U': '-1',
'Default:CampaignInfo_j': json.dumps({
'CampaignInfo': {
'lobbyConnectionStarted': False,
'matchmakingResult': 'NoResults',
'matchmakingState': 'NotMatchmaking',
'sessionIsCriticalMission': False,
'zoneTileIndex': -1,
'theaterId': ''
}
}),
'Default:ZoneInstanceId_s': '',
'Default:SpectateAPartyMemberAvailable_b': 'false',
'Default:TheaterId_s': '',
'Default:TileStates_j': json.dumps({
'TileStates': [],
}),
Expand All @@ -1099,6 +1103,9 @@ def __init__(self, party: 'PartyBase',
'tournamentId': '',
'eventWindowId': '',
'regionId': 'EU',
'linkId': {
'mnemonic': 'playlist_defaultDuo',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this here? Doesn't seem like this is needed in any way?

Copy link
Author

@lkxoayh lkxoayh Mar 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

its for fix the party visual when the game mode is selected bc it will stay on the basic one..

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Terbau ?

},
},
}),
'Default:AthenaSquadFill_b': 'true',
Expand Down