Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix custom data in game.prefs breaking Notify management window #6044

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion changelog/3807.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Bug Fixes

<!-- Remove header when empty -->
- (#6044) Fix Seraphim experimentals not appearing in the Notify settings window in normal games after having played Nomads.

## Balance

Expand Down
3 changes: 3 additions & 0 deletions lua/ui/notify/customiser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,9 @@ function FormatData()
LineGroups[category].collapsed = linesCollapsed

for source, message in data do
-- Will break customiser if alias from `clarityTable` is nil
if not clarityTable[source] then continue end

local messageLine = {
source = source,
category = category,
Expand Down