forked from teamnwah/openmw-tes3coop
[Client] Send ObjectLock packets when using lock spells
This commit is contained in:
parent
9519c467eb
commit
0b68e59060
1 changed files with 13 additions and 0 deletions
|
@ -620,6 +620,19 @@ namespace MWMechanics
|
|||
if (caster == getPlayer())
|
||||
MWBase::Environment::get().getWindowManager()->messageBox("#{sMagicLockSuccess}");
|
||||
target.getClass().lock(target, static_cast<int>(magnitude));
|
||||
|
||||
/*
|
||||
Start of tes3mp addition
|
||||
|
||||
Send an ID_OBJECT_LOCK packet every time an object is locked here
|
||||
*/
|
||||
mwmp::WorldEvent *worldEvent = mwmp::Main::get().getNetworking()->getWorldEvent();
|
||||
worldEvent->reset();
|
||||
worldEvent->addObjectLock(target, static_cast<int>(magnitude));
|
||||
worldEvent->sendObjectLock();
|
||||
/*
|
||||
End of tes3mp addition
|
||||
*/
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue