From 4df8f720f57ccc573b5668ae51e9e1da5b1135ea Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 14 Nov 2022 13:33:14 +0100 Subject: [PATCH] Fix small bug when using text commands to enable or disable Penumbra. --- Penumbra/Penumbra.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Penumbra/Penumbra.cs b/Penumbra/Penumbra.cs index 9335c32d..d266339b 100644 --- a/Penumbra/Penumbra.cs +++ b/Penumbra/Penumbra.cs @@ -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":