mirror of
https://github.com/exituser/Brewery.git
synced 2026-09-17 08:59:01 +00:00
Fix for commands having a space after '+' like ' - ++ weather'
This commit is contained in:
@@ -21,6 +21,9 @@ public interface StringParser {
|
|||||||
plus = 1;
|
plus = 1;
|
||||||
line = line.substring(1);
|
line = line.substring(1);
|
||||||
}
|
}
|
||||||
|
if (line.startsWith(" ")) {
|
||||||
|
line = line.substring(1);
|
||||||
|
}
|
||||||
if (line.startsWith("/")) {
|
if (line.startsWith("/")) {
|
||||||
line = line.substring(1);
|
line = line.substring(1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user