This commit is contained in:
avevad 2020-06-22 19:52:31 +05:00 committed by Tamás Bálint Misius
parent 688b4bec30
commit 1635c93822

View File

@ -224,7 +224,7 @@ String TPTScriptInterface::FormatCommand(String command)
String outputData;
//Split command into words, put them on the stack
for(String word : command.PartitionBy(' '))
for(String word : command.PartitionBy(' ', true))
words.push_back(word);
while(!words.empty())
{