mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Don't panic link if the avatar is flying around
This commit is contained in:
@ -669,6 +669,10 @@ bool plPanicLinkRegion::MsgReceive(plMessage* msg)
|
||||
if (plNetClientApp::GetInstance()->GetLocalPlayerKey() != pCollMsg->fOtherKey)
|
||||
return true;
|
||||
|
||||
// If the avatar is disabled (flying around), don't trigger
|
||||
if (IIsDisabledAvatar(pCollMsg->fOtherKey))
|
||||
return false;
|
||||
|
||||
if (pCollMsg->fEntering)
|
||||
{
|
||||
plArmatureMod* avMod = IGetAvatarModifier(pCollMsg->fOtherKey);
|
||||
|
Reference in New Issue
Block a user