1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 23:23:52 +00:00

[Client] Send an ObjectDelete packet when disposing of corpses

This commit is contained in:
David Cernat 2017-05-08 08:44:43 +03:00
parent 26087a182d
commit 5bd95628ce

View file

@ -363,6 +363,22 @@ namespace MWGui
{
onTakeAllButtonClicked(mTakeButton);
/*
Start of tes3mp addition
Send an ID_OBJECT_DELETE packet every time a corpse is disposed of
*/
if (!mPtr.getClass().isPersistent(mPtr))
{
mwmp::WorldEvent *worldEvent = mwmp::Main::get().getNetworking()->getWorldEvent();
worldEvent->reset();
worldEvent->addObjectDelete(mPtr);
worldEvent->sendObjectDelete();
}
/*
End of tes3mp addition
*/
if (mPtr.getClass().isPersistent(mPtr))
MWBase::Environment::get().getWindowManager()->messageBox("#{sDisposeCorpseFail}");
else