From f1bcdc77b0f929207d035f2251292abaa94d4d2b Mon Sep 17 00:00:00 2001 From: Ethan Henderson Date: Thu, 21 Nov 2024 13:55:13 -0700 Subject: [PATCH] Add appropriate warnings to risky setting --- .../D092OverseerKanilokkaConfig.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BossMod/Modules/Dawntrail/Dungeon/D09YuweyawataFieldStation/D092OverseerKanilokkaConfig.cs b/BossMod/Modules/Dawntrail/Dungeon/D09YuweyawataFieldStation/D092OverseerKanilokkaConfig.cs index 615f3b5e49..c79a4584ea 100644 --- a/BossMod/Modules/Dawntrail/Dungeon/D09YuweyawataFieldStation/D092OverseerKanilokkaConfig.cs +++ b/BossMod/Modules/Dawntrail/Dungeon/D09YuweyawataFieldStation/D092OverseerKanilokkaConfig.cs @@ -8,7 +8,7 @@ public enum NecrohazardMechanic [PropertyDisplay("Tank Invuln")] TankInvuln, - [PropertyDisplay("Teleport hack (Always)")] + [PropertyDisplay("Teleport hack (Always)\nWARNING: This should ONLY be used when multi-boxing!")] TeleportHackAlways, [PropertyDisplay("Teleport hack (NPC)")] @@ -18,7 +18,7 @@ public enum NecrohazardMechanic [PropertyDisplay("Necrohazard mechanic solver", tooltip: "Select how to solve mechanic:" + "\nTank Invuln - Will solve the mechanic by using the Tank's invuln ability." + - "\nTeleport hack (Always) - Always uses teleport hacks to solve mechanic." + - "\nTeleport hack (NPC) - Only Uses teleport hacks when NPC are in the party!")] + "\nTeleport hack (Always) - Always uses teleport hacks to solve mechanic, even with other players present." + + "\nTeleport hack (NPC) - Only Uses teleport hacks when NPC are in the party.")] public NecrohazardMechanic NecroHazardMechanicHints = NecrohazardMechanic.TankInvuln; }