From 15cc9d85091136cf48a812eca7f0e3033da202db Mon Sep 17 00:00:00 2001 From: CarnifexOptimus <156172553+CarnifexOptimus@users.noreply.github.com> Date: Thu, 6 Feb 2025 14:30:00 +0100 Subject: [PATCH] small fix --- .../Dungeon/D07TenderValley/D074GreatestSerpentOfTural.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BossMod/Modules/Dawntrail/Dungeon/D07TenderValley/D074GreatestSerpentOfTural.cs b/BossMod/Modules/Dawntrail/Dungeon/D07TenderValley/D074GreatestSerpentOfTural.cs index 5f26ac28cf..8ae8b1c33d 100644 --- a/BossMod/Modules/Dawntrail/Dungeon/D07TenderValley/D074GreatestSerpentOfTural.cs +++ b/BossMod/Modules/Dawntrail/Dungeon/D07TenderValley/D074GreatestSerpentOfTural.cs @@ -122,7 +122,7 @@ private static AOEShapeCustom[] InitializeShapes(bool invert = false) for (var i = 0; i < 4; ++i) { var tp = tilePairs[i]; - shapes[i] = new AOEShapeCustom(wholeArena, [middle, tp.correctTile, tp.goalTile], InvertForbiddenZone: invert); + shapes[i] = !invert ? new AOEShapeCustom(wholeArena, [middle, tp.correctTile, tp.goalTile]) : new AOEShapeCustom([tp.correctTile, tp.goalTile], InvertForbiddenZone: true); } return shapes; }