mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
Add on_deactivate callback for luaentities (#10723)
This commit is contained in:
parent
ad58fb2206
commit
dd5a732fa9
12 changed files with 106 additions and 27 deletions
|
@ -73,3 +73,19 @@ void ServerActiveObject::dumpAOMessagesToQueue(std::queue<ActiveObjectMessage> &
|
|||
m_messages_out.pop();
|
||||
}
|
||||
}
|
||||
|
||||
void ServerActiveObject::markForRemoval()
|
||||
{
|
||||
if (!m_pending_removal) {
|
||||
onMarkedForRemoval();
|
||||
m_pending_removal = true;
|
||||
}
|
||||
}
|
||||
|
||||
void ServerActiveObject::markForDeactivation()
|
||||
{
|
||||
if (!m_pending_deactivation) {
|
||||
onMarkedForDeactivation();
|
||||
m_pending_deactivation = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue