mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 13:14:17 +01:00
Fix small bug when using text commands to enable or disable Penumbra.
This commit is contained in:
parent
b3a993a2bc
commit
4df8f720f5
1 changed files with 4 additions and 4 deletions
|
|
@ -410,15 +410,15 @@ public class Penumbra : IDalamudPlugin
|
|||
case "enable":
|
||||
{
|
||||
Dalamud.Chat.Print( Enable()
|
||||
? "Your mods are already enabled. To disable your mods, please run the following command instead: /penumbra disable"
|
||||
: modsEnabled );
|
||||
? modsEnabled
|
||||
: "Your mods are already enabled. To disable your mods, please run the following command instead: /penumbra disable" );
|
||||
break;
|
||||
}
|
||||
case "disable":
|
||||
{
|
||||
Dalamud.Chat.Print( Disable()
|
||||
? "Your mods are already disabled. To enable your mods, please run the following command instead: /penumbra enable"
|
||||
: modsDisabled );
|
||||
? modsDisabled
|
||||
: "Your mods are already disabled. To enable your mods, please run the following command instead: /penumbra enable" );
|
||||
break;
|
||||
}
|
||||
case "toggle":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue