Skip to content

Commit

Permalink
added missing base
Browse files Browse the repository at this point in the history
  • Loading branch information
LinnielDW committed Apr 23, 2023
1 parent ef8a599 commit 494e4d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/MorePersonaTraits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public override string SettingsCategory()

public override void DoSettingsWindowContents(Rect inRect)
{
MorePersonaTraitsSpawns.settings.DoWindowContents(inRect);
settings.DoWindowContents(inRect);
base.DoSettingsWindowContents(inRect);
}

public static MorePersonaTraitsSpawnsSettings settings;
Expand Down

0 comments on commit 494e4d0

Please sign in to comment.