Remove mentions of forced collection.

This commit is contained in:
Ottermandias 2022-05-09 13:35:54 +02:00
parent d2f84aa976
commit 3ed85b56b5
2 changed files with 2 additions and 3 deletions

View file

@ -348,7 +348,7 @@ public class Penumbra : IDalamudPlugin
else else
{ {
Dalamud.Chat.Print( "Missing arguments, the correct command format is:" Dalamud.Chat.Print( "Missing arguments, the correct command format is:"
+ " /penumbra collection {default|forced} <collectionName>" ); + " /penumbra collection {default} <collectionName>" );
} }
break; break;

View file

@ -115,8 +115,7 @@ public partial class ConfigWindow
DrawCollectionSelector( "##default", _window._inputTextWidth.X, ModCollection.Type.Default, true, null ); DrawCollectionSelector( "##default", _window._inputTextWidth.X, ModCollection.Type.Default, true, null );
ImGui.SameLine(); ImGui.SameLine();
ImGuiUtil.LabeledHelpMarker( "Default Collection", ImGuiUtil.LabeledHelpMarker( "Default Collection",
"Mods in the default collection are loaded for any character that is not explicitly named in the character collections below.\n" "Mods in the default collection are loaded for any character that is not explicitly named in the character collections below.\n" );
+ "They also take precedence before the forced collection." );
} }
// We do not check for valid character names. // We do not check for valid character names.