Merge pull request #19223

* Change manifesto to manifest
This commit is contained in:
Sailor
2023-08-17 01:20:09 +03:00
committed by GitHub
parent 24404fa010
commit b38685622e
2 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ namespace Content.Client.RoundEnd
RoundId = roundId;
var roundEndTabs = new TabContainer();
roundEndTabs.AddChild(MakeRoundEndSummaryTab(gm, roundEnd, roundTimeSpan, roundId));
roundEndTabs.AddChild(MakePlayerManifestoTab(info));
roundEndTabs.AddChild(MakePlayerManifestTab(info));
Contents.AddChild(roundEndTabs);
@@ -90,12 +90,12 @@ namespace Content.Client.RoundEnd
return roundEndSummaryTab;
}
private BoxContainer MakePlayerManifestoTab(RoundEndMessageEvent.RoundEndPlayerInfo[] playersInfo)
private BoxContainer MakePlayerManifestTab(RoundEndMessageEvent.RoundEndPlayerInfo[] playersInfo)
{
var playerManifestTab = new BoxContainer
{
Orientation = LayoutOrientation.Vertical,
Name = Loc.GetString("round-end-summary-window-player-manifesto-tab-title")
Name = Loc.GetString("round-end-summary-window-player-manifest-tab-title")
};
var playerInfoContainerScrollbox = new ScrollContainer