Skip to content

Commit

Permalink
Revert "add: White changelog"
Browse files Browse the repository at this point in the history
This reverts commit d78dce6.
  • Loading branch information
Spatison committed Dec 3, 2024
1 parent f6997d4 commit c630fec
Show file tree
Hide file tree
Showing 5 changed files with 383 additions and 850 deletions.
4 changes: 2 additions & 2 deletions Content.Client/Lobby/LobbyState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private async void PopulateChangelog()
Lobby.ChangelogContainer.Children.Clear();

var changelogs = await _changelog.LoadChangelog();
var whiteChangelog = changelogs.Find(cl => cl.Name == "WhiteChangelog");
var whiteChangelog = changelogs.Find(cl => cl.Name == "Changelog");

if (whiteChangelog is null)
{
Expand All @@ -253,7 +253,7 @@ private async void PopulateChangelog()

var entries = whiteChangelog.Entries
.OrderByDescending(c => c.Time)
.Take(3);
.Take(5);

foreach (var entry in entries)
{
Expand Down
Loading

0 comments on commit c630fec

Please sign in to comment.