We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379b882 commit 5d41458Copy full SHA for 5d41458
worldedit_brush/init.lua
@@ -41,7 +41,14 @@ local brush_on_use = function(itemstack, placer)
41
42
assert(pointed_thing.type == "node")
43
worldedit.pos1[name] = pointed_thing.under
44
- worldedit.pos2[name] = nil
+
45
+ -- Hotfix for `cubeapply`
46
+ if cmddef.require_pos == 2 then
47
+ worldedit.pos2[name] = pointed_thing.under
48
+ else
49
+ worldedit.pos2[name] = nil
50
+ end
51
52
worldedit.marker_update(name)
53
54
-- this isn't really clean...
0 commit comments