-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow vanilla mugshots to be double-clicked.
Uses a separate method to revert to vanilla, which is called when the mugshot is marked as being base-game related. Also fixes the bug where double-clicking on a mugshot without a facegen wouldn't work. This was caused by the FaceGen Redirect fixes a while back. Allowing these faces to be chosen as long as there is a corresponding plugin (even if there is no facegen) should hopefully fix the bug without breaking the FG override logic. Fixes #122
- Loading branch information
1 parent
e92144f
commit cba1e8d
Showing
6 changed files
with
68 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Focus.ModManagers; | ||
|
||
namespace Focus.Apps.EasyNpc.Profiles | ||
{ | ||
public static class Placeholders | ||
{ | ||
private static readonly string BaseGameLabel = "Vanilla"; | ||
|
||
public static readonly ModComponentInfo BaseGameComponent = new( | ||
new ModLocatorKey(string.Empty, BaseGameLabel), string.Empty, BaseGameLabel, string.Empty); | ||
|
||
public static readonly ModInfo BaseGameMod = new(string.Empty, BaseGameLabel) | ||
{ | ||
Components = new[] { BaseGameComponent }, | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters