Skip to content

Commit

Permalink
Merge pull request #591 from FFXIV-CombatReborn/mergeWIP
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
CarnifexOptimus authored Feb 6, 2025
2 parents 5728c13 + 15cc9d8 commit cb4a220
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit cb4a220

Please sign in to comment.