mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Remove attached sounds when the active object is removed (#14341)
This commit is contained in:
parent
39b1311a1b
commit
63a9853811
7 changed files with 44 additions and 12 deletions
|
@ -2123,3 +2123,11 @@ const std::string &Client::getFormspecPrepend() const
|
|||
{
|
||||
return m_env.getLocalPlayer()->formspec_prepend;
|
||||
}
|
||||
|
||||
void Client::removeActiveObjectSounds(u16 id)
|
||||
{
|
||||
for (auto it : m_sounds_to_objects) {
|
||||
if (it.second == id)
|
||||
m_sound->stopSound(it.first);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue