Fix spaces breaking formspec_version[] tag

This commit is contained in:
rubenwardy 2019-12-09 21:05:07 +00:00
parent 9284313d17
commit 8e63d22d64
1 changed files with 1 additions and 1 deletions

View File

@ -2262,7 +2262,7 @@ bool GUIFormSpecMenu::parseVersionDirect(const std::string &data)
return false;
}
if (parts[0] != "formspec_version") {
if (trim(parts[0]) != "formspec_version") {
return false;
}