This commit is contained in:
NotMyFault 2018-11-21 14:28:21 +01:00
commit 1c17b1001d
1 changed files with 1 additions and 1 deletions

View File

@ -745,7 +745,7 @@ public class BrushCommands extends BrushProcessor {
private BrushSettings terrainBrush(Player player, LocalSession session, Expression radius, String image, int rotation, double yscale, boolean flat, boolean randomRotate, boolean layers, boolean smooth, ScalableHeightMap.Shape shape, CommandContext context) throws WorldEditException, FileNotFoundException, ParameterException {
checkMaxBrushRadius(radius);
InputStream stream = image == null ? null : getHeightmapStream(image);
InputStream stream = (image == null || image.equalsIgnoreCase("null") || image.equalsIgnoreCase("#clipboard")) ? null : getHeightmapStream(image);
HeightBrush brush;
if (flat) {
try {