Add option to disable PCP.

This commit is contained in:
Ottermandias 2025-08-22 15:49:15 +02:00
parent e3b7f72893
commit 8043e6fb6b
3 changed files with 5 additions and 1 deletions

View file

@ -598,6 +598,9 @@ public class SettingsTab : ITab, IUiService
Checkbox("Always Open Import at Default Directory",
"Open the import window at the location specified here every time, forgetting your previous path.",
_config.AlwaysOpenDefaultImport, v => _config.AlwaysOpenDefaultImport = v);
Checkbox("Handle PCP Files",
"When encountering specific mods, usually but not necessarily denoted by a .pcp file ending, Penumbra will automatically try to create an associated collection and assign it to a specific character for this mod package. This can turn this behaviour off if unwanted.",
!_config.DisablePcpHandling, v => _config.DisablePcpHandling = !v);
DrawDefaultModImportPath();
DrawDefaultModAuthor();
DrawDefaultModImportFolder();