mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 08:03:45 +01:00
Formspecs: Fix broken texture escaping with model[]
This commit is contained in:
parent
9250b5205a
commit
ff921f6989
@ -2787,7 +2787,7 @@ void GUIFormSpecMenu::parseModel(parserData *data, const std::string &element)
|
||||
auto meshnode = e->setMesh(mesh);
|
||||
|
||||
for (u32 i = 0; i < textures.size() && i < meshnode->getMaterialCount(); ++i)
|
||||
e->setTexture(i, m_tsrc->getTexture(textures[i]));
|
||||
e->setTexture(i, m_tsrc->getTexture(unescape_string(textures[i])));
|
||||
|
||||
if (vec_rot.size() >= 2)
|
||||
e->setRotation(v2f(stof(vec_rot[0]), stof(vec_rot[1])));
|
||||
|
Loading…
Reference in New Issue
Block a user