Skip to content

Commit

Permalink
Small improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Dec 13, 2024
1 parent 08ff9b6 commit 5db3d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Penumbra/CommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ private bool SetMod(string arguments)
if (arguments.Length == 0)
{
var seString = new SeStringBuilder()
.AddText("Use with /penumbra mod ").AddBlue("[enable|disable|inherit|toggle|setting]").AddText(" ")
.AddText("Use with /penumbra mod ").AddBlue("[enable|disable|inherit|toggle|").AddGreen("setting").AddBlue("]").AddText(" ")
.AddYellow("[Collection Name]")
.AddText(" | ")
.AddPurple("[Mod Name or Mod Directory Name]")
Expand Down Expand Up @@ -416,7 +416,7 @@ private bool SetMod(string arguments)
var split2 = nameSplit[1].Split('|', 3, StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries);
if (split2.Length < 2)
{
_chat.Print("Not enough arguments for changing settings provided.");
_chat.Print("Not enough arguments for changing settings provided. Please add a group name and a list of setting names - which can be empty for multi options.");
return false;
}

Expand Down

0 comments on commit 5db3d53

Please sign in to comment.