mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-14 09:05:19 +02:00
set_nametag_attributes: don't reset nametags if text param is not touched
fixes #12901
This commit is contained in:
@@ -721,8 +721,7 @@ int ObjectRef::l_set_nametag_attributes(lua_State *L)
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
std::string nametag = getstringfield_default(L, 2, "text", "");
|
||||
prop->nametag = nametag;
|
||||
prop->nametag = getstringfield_default(L, 2, "text", prop->nametag);
|
||||
|
||||
prop->validate();
|
||||
sao->notifyObjectPropertiesModified();
|
||||
|
Reference in New Issue
Block a user