Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7179b98
added 3 fields into DTO of MatchmakerQueueMapPool
K-ETFreeman Oct 12, 2024
0185fe0
server message
K-ETFreeman Oct 27, 2024
33016b7
message2
K-ETFreeman Oct 27, 2024
0e4fe45
Use the interface not an implementation
K-ETFreeman Oct 27, 2024
94c9985
field rename
K-ETFreeman Nov 17, 2024
8d81ab7
Merge branch 'develop' into veto-system-fields
K-ETFreeman Nov 17, 2024
2fc2cbe
cleanup
K-ETFreeman Nov 17, 2024
87d6a50
changed the structure of SetPlayerVetoesRequest
K-ETFreeman Nov 23, 2024
eef5cb5
Merge branch 'develop' of https://github.com/K-ETFreeman/faf-java-com…
K-ETFreeman Nov 23, 2024
dbc8742
Veto system fields
K-ETFreeman Oct 27, 2024
f02bf68
vetoes_changed
K-ETFreeman Dec 8, 2024
0376b4b
Merge branch 'veto-system-fields' of https://github.com/K-ETFreeman/f…
K-ETFreeman Dec 8, 2024
3b1a47f
without bracked ids
K-ETFreeman Dec 24, 2024
1573331
Merge branch 'develop' into veto-system-fields
K-ETFreeman Dec 25, 2024
b8ef944
added teamSize to dto
K-ETFreeman Dec 28, 2024
5a55c59
bracket id in VetoData
K-ETFreeman Feb 5, 2025
2b818ed
actually its not optional param
K-ETFreeman Feb 5, 2025
493e50c
id
K-ETFreeman Feb 5, 2025
cf0efcd
Merge branch 'develop' into veto-system-fields
K-ETFreeman Mar 19, 2025
7733056
garbage removed
K-ETFreeman Mar 23, 2025
97b92bc
added forced boolean
K-ETFreeman Jul 25, 2025
876cfc8
renamed field according to server refactor
K-ETFreeman Jul 25, 2025
540466f
renaming command according to server refactor
K-ETFreeman Jul 25, 2025
ba0d062
Merge branch 'FAForever:develop' into veto-system-fields
K-ETFreeman Oct 7, 2025
4081d57
some shit to get jitpack build
K-ETFreeman Oct 7, 2025
a0397d1
undo
K-ETFreeman Oct 8, 2025
2923124
more undo
K-ETFreeman Oct 8, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public class MatchmakerQueue extends AbstractEntity<MatchmakerQueue> {
private String technicalName;
@ToString.Include
private String nameKey;
@ToString.Include
private Integer teamSize;

@Relationship("featuredMod")
private FeaturedMod featuredMod;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ data class NoticeInfo(
val text: String?,
) : ServerMessage

/**
* A message from the server (automated) to update vetoes of the user.
*/
data class VetoesChangedInfo(
val forced: Boolean,
val vetoes: List <VetoData>
) : ServerMessage

/**
* Error response from server when joining a game.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ interface ClientMessage : LobbyProtocolMessage
JsonSubTypes.Type(value = SocialInfo::class, name = "social"),
JsonSubTypes.Type(value = LoginFailedResponse::class, name = "authentication_failed"),
JsonSubTypes.Type(value = NoticeInfo::class, name = "notice"),
JsonSubTypes.Type(value = VetoesChangedInfo::class, name = "vetoes_info"),
JsonSubTypes.Type(value = GameJoinFailed::class, name = "game_join_failed"),
JsonSubTypes.Type(value = IceServerListResponse::class, name = "ice_servers"),
JsonSubTypes.Type(value = AvatarListInfo::class, name = "avatar"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ data class VetoData(
@JsonProperty("map_pool_map_version_id")
val mapPoolMapVersionId: Int,
@JsonProperty("veto_tokens_applied")
val vetoTokensApplied: Int
val vetoTokensApplied: Int,
@JsonProperty("matchmaker_queue_map_pool_id")
val matchmakerQueueMapPoolId: Int
)


Expand Down