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:
parent
26087a182d
commit
5bd95628ce
1 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue