Temporary fix for command core size issue
This commit is contained in:
parent
490bd6461d
commit
9d9ccafd6c
1 changed files with 3 additions and 3 deletions
|
@ -88,9 +88,9 @@ public class CommandCore {
|
||||||
noPos.start.getZ() + origin.getZ()
|
noPos.start.getZ() + origin.getZ()
|
||||||
),
|
),
|
||||||
new BlockPos(
|
new BlockPos(
|
||||||
noPos.end.getX() + origin.getX(),
|
noPos.start.getX() + origin.getX() + 15,
|
||||||
(int) MathUtilities.clamp(noPos.end.getY(), dimension.minY(), dimension.height()),
|
(int) MathUtilities.clamp(noPos.start.getY(), dimension.minY(), dimension.height()),
|
||||||
noPos.end.getZ() + origin.getZ()
|
noPos.start.getZ() + origin.getZ() + 15
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue