Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre3 committed Jan 8, 2023
1 parent 9fa8ac0 commit 57532af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mine2DDesigner/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ await Task.Run(() =>
for (int x = 0; x < blockAria.Width; x++)
{
var blockIndex = blockAria.GetBlock(x, y, z);
if (ReplaceAirBlocks.Value && blockIndex == 0)
if (!ReplaceAirBlocks.Value && blockIndex == 0)
{
continue;
}
Expand Down

0 comments on commit 57532af

Please sign in to comment.