Skip to content

Commit

Permalink
4700 | 44 files | M Protobufs/dota_gcmessages_msgid.proto, M Protobuf…
Browse files Browse the repository at this point in the history
…s/dota_gcmessages_server.proto, M Protobufs/dota_shared_enums.proto, M game/bin/built_from_cl.txt, M game/dota/bin/linuxsteamrt64/libclient_strings.txt, M game/dota/bin/linuxsteamrt64/libserver_strings.txt, M game/dota/pak01_dir.txt, M game/dota/pak01_dir/panorama/layout/frontpage_contents.xml, M game/dota/pak01_dir/panorama/layout/hud/dota_hud_abilitydraft.xml, M game/dota/pak01_dir/panorama/styles/banners/front_page_dota_plus_debut.css, M game/dota/pak01_dir/panorama/styles/banners/front_page_true_sight_international_2018.css, M game/dota/pak01_dir/panorama/styles/crate_recycle.css, M game/dota/pak01_dir/panorama/styles/custom_game_lobby_list.css, M game/dota/pak01_dir/panorama/styles/custom_game_lobby_list_row.css, M game/dota/pak01_dir/panorama/styles/dashboard_page_custom_game.css, M game/dota/pak01_dir/panorama/styles/dashboard_page_custom_games_overview.css, M game/dota/pak01_dir/panorama/styles/dashboard_page_diretide_treasure_details.

https://steamdb.info/patchnotes/6249709/
  • Loading branch information
SteamTracker committed Feb 17, 2021
1 parent a831851 commit ffd3b67
Show file tree
Hide file tree
Showing 44 changed files with 2,043 additions and 589 deletions.
2 changes: 2 additions & 0 deletions Protobufs/dota_gcmessages_msgid.proto
Expand Up @@ -943,4 +943,6 @@ enum EDOTAGCMsg {
k_EMsgClientToGCSetDPCFavoriteState = 8779;
k_EMsgClientToGCSetDPCFavoriteStateResponse = 8780;
k_EMsgClientToGCOverwatchReplayError = 8781;
k_EMsgServerToGCPlayerChallengeHistory = 8782;
k_EMsgSignOutBanData = 8783;
}
23 changes: 23 additions & 0 deletions Protobufs/dota_gcmessages_server.proto
Expand Up @@ -505,6 +505,11 @@ message CMsgGameMatchSignOutPerfData {
repeated float max_input_processing_time = 22;
}

message CMsgGameMatchSignOutBanData {
repeated uint32 hero_bans = 1;
repeated uint32 hero_ban_votes = 2;
}

message CMsgDOTALiveScoreboardUpdate {
message Team {
message Player {
Expand Down Expand Up @@ -1171,6 +1176,24 @@ message CMsgServerToGCCavernCrawlIsHeroActive {
optional bool turbo_mode = 5;
}

message CMsgServerToGCPlayerChallengeHistory {
message PlayerChallenge {
optional uint32 account_id = 1;
optional .EPlayerChallengeHistoryType challenge_type = 2 [default = k_EPlayerChallengeHistoryType_Invalid];
optional uint32 challenge_id1 = 3;
optional uint32 challenge_id2 = 4;
optional uint32 progress_value_start = 5;
optional uint32 progress_value_end = 6;
optional bool team_won = 7;
optional uint64 audit_data = 8;
optional uint32 hero_id = 9;
}

optional uint64 match_id = 1;
optional uint32 average_rank = 2;
repeated .CMsgServerToGCPlayerChallengeHistory.PlayerChallenge challenge_records = 3;
}

message CMsgServerToGCCavernCrawlIsHeroActiveResponse {
message MapResults {
optional uint32 path_id_completed = 1;
Expand Down
9 changes: 9 additions & 0 deletions Protobufs/dota_shared_enums.proto
Expand Up @@ -555,6 +555,15 @@ enum EEventActionScoreMode {
k_eEventActionScoreMode_Min = 1;
}

enum EPlayerChallengeHistoryType {
k_EPlayerChallengeHistoryType_Invalid = 0;
k_EPlayerChallengeHistoryType_KillEater = 1;
k_EPlayerChallengeHistoryType_DotaPlusRelic = 2;
k_EPlayerChallengeHistoryType_DotaPlusHeroPlayerChallenge = 3;
k_EPlayerChallengeHistoryType_InGameEventChallenge = 4;
k_EPlayerChallengeHistoryType_GuildContract = 5;
}

enum EOverwatchReportReason {
k_EOverwatchReportReason_Unknown = 0;
k_EOverwatchReportReason_Cheating = 1;
Expand Down
2 changes: 1 addition & 1 deletion game/bin/built_from_cl.txt
@@ -1 +1 @@
6370108
6371826

0 comments on commit ffd3b67

Please sign in to comment.