mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix crash on new installs.
This commit is contained in:
parent
98d40d06a9
commit
3944601c99
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ namespace Penumbra.UI
|
||||||
|
|
||||||
public void ResetModNamesLower()
|
public void ResetModNamesLower()
|
||||||
{
|
{
|
||||||
_modNamesLower = Mods.ModSettings.Select( I => I.Mod.Meta.Name.ToLowerInvariant() ).ToArray();
|
_modNamesLower = Mods?.ModSettings?.Select( I => I.Mod.Meta.Name.ToLowerInvariant() ).ToArray() ?? new string[]{};
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DrawPriorityChangeButton( string iconString, bool up, int unavailableWhen )
|
private void DrawPriorityChangeButton( string iconString, bool up, int unavailableWhen )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue