This commit is contained in:
Jesse Boyd 2017-09-08 09:41:11 +10:00
parent 89c0a2cd2f
commit f2b592a9e1
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class CommandBrush implements Brush {
private final String command;
public CommandBrush(String command, double radius) {
this.command = command;
this.command = command.charAt(0) == '/' ? "/" + command : command;
}
@Override