Skip to content

Commit 21e06f2

Browse files
authored
Merge pull request #18 from TheNextLvl-net/paint-brush-fix
fix paint brush
2 parents 50facdf + 8002d6c commit 21e06f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/thenextlvl/gopaint/brush/standard/PaintBrush.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void paint(Location target, Player player, BrushSettings brushSettings) {
106106
continue;
107107
}
108108

109-
var vector3 = BlockVector3.at(block.getX(), block.getY(), block.getZ());
109+
var vector3 = BlockVector3.at(point.getX(), point.getY(), point.getZ());
110110
setBlock(session, vector3, brushSettings.getRandomBlock());
111111
}
112112
});

0 commit comments

Comments
 (0)