Skip to content

Commit

Permalink
Merge pull request #18 from TheNextLvl-net/paint-brush-fix
Browse files Browse the repository at this point in the history
fix paint brush
  • Loading branch information
NonSwag authored Jun 23, 2024
2 parents 50facdf + 8002d6c commit 21e06f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void paint(Location target, Player player, BrushSettings brushSettings) {
continue;
}

var vector3 = BlockVector3.at(block.getX(), block.getY(), block.getZ());
var vector3 = BlockVector3.at(point.getX(), point.getY(), point.getZ());
setBlock(session, vector3, brushSettings.getRandomBlock());
}
});
Expand Down

0 comments on commit 21e06f2

Please sign in to comment.