mirror of
https://github.com/exituser/Brewery.git
synced 2026-09-17 04:19: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;
|
||||
line = line.substring(1);
|
||||
}
|
||||
if (line.startsWith(" ")) {
|
||||
line = line.substring(1);
|
||||
}
|
||||
if (line.startsWith("/")) {
|
||||
line = line.substring(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user