Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CarnifexOptimus committed Feb 6, 2025
1 parent 1f50919 commit 15cc9d8
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 15cc9d8

Please sign in to comment.