Skip to content

Commit

Permalink
Tweak config section display condition in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Nov 26, 2024
1 parent bae39f3 commit 21ed744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public override IAsyncEnumerable<DataFeedItem> Apply(IAsyncEnumerable<DataFeedIt

private static async IAsyncEnumerable<DataFeedItem> EnumerateConfigAsync(EnumerateDataFeedParameters<SettingsDataFeed> parameters, Config config)
{
foreach (var configSection in config.Sections.Where(section => !section.InternalAccessOnly))
foreach (var configSection in config.Sections.Where(section => !section.InternalAccessOnly && section.Keys.Any(key => !key.InternalAccessOnly)))
{
var sectionGroup = new DataFeedGroup();
sectionGroup.InitBase(configSection.Id, parameters.Path, parameters.GroupKeys, configSection.GetLocaleString("Name"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageId>MonkeyLoader.GamePacks.Resonite</PackageId>
<Title>Resonite Game Pack</Title>
<Authors>Banane9, Nytra</Authors>
<Version>0.21.1-beta</Version>
<Version>0.21.2-beta</Version>
<Description>
This Game Pack for MonkeyLoader provides basic hooks for modding the game Resonite,
which uses FrooxEngine. It provides hooks for the beginning of initialization,
Expand Down

0 comments on commit 21ed744

Please sign in to comment.