trim spaces from schematic name
This commit is contained in:
parent
8694d926c4
commit
0ef08142fd
@ -262,7 +262,7 @@ public class ExampleBaritoneControl extends Behavior implements Helper {
|
|||||||
file = coords[0] + ".schematic";
|
file = coords[0] + ".schematic";
|
||||||
origin = new BlockPos(Integer.parseInt(coords[1]), Integer.parseInt(coords[2]), Integer.parseInt(coords[3]));
|
origin = new BlockPos(Integer.parseInt(coords[1]), Integer.parseInt(coords[2]), Integer.parseInt(coords[3]));
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
file = msg.substring(5) + ".schematic";
|
file = msg.substring(5).trim() + ".schematic";
|
||||||
origin = ctx.playerFeet();
|
origin = ctx.playerFeet();
|
||||||
}
|
}
|
||||||
logDirect("Loading '" + file + "' to build from origin " + origin);
|
logDirect("Loading '" + file + "' to build from origin " + origin);
|
||||||
|
Loading…
Reference in New Issue
Block a user