mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-20 07:34:25 +01:00
Untangling the mods.
This commit is contained in:
parent
1d82e882ed
commit
4972dd1c9f
39 changed files with 883 additions and 935 deletions
|
|
@ -550,19 +550,19 @@ public class CommandHandler : IDisposable
|
|||
|
||||
private void Print(string text)
|
||||
{
|
||||
if (Penumbra.Config.PrintSuccessfulCommandsToChat)
|
||||
if (_config.PrintSuccessfulCommandsToChat)
|
||||
_chat.Print(text);
|
||||
}
|
||||
|
||||
private void Print(DefaultInterpolatedStringHandler text)
|
||||
{
|
||||
if (Penumbra.Config.PrintSuccessfulCommandsToChat)
|
||||
if (_config.PrintSuccessfulCommandsToChat)
|
||||
_chat.Print(text.ToStringAndClear());
|
||||
}
|
||||
|
||||
private void Print(Func<SeString> text)
|
||||
{
|
||||
if (Penumbra.Config.PrintSuccessfulCommandsToChat)
|
||||
if (_config.PrintSuccessfulCommandsToChat)
|
||||
_chat.Print(text());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue