|
|
@ -217,6 +217,8 @@ bool plResponderModifier::IIsLocalOnlyCmd(plMessage* cmd) |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
if (plCameraMsg::ConvertNoRef(cmd)) // don't want to change our camera
|
|
|
|
if (plCameraMsg::ConvertNoRef(cmd)) // don't want to change our camera
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
|
|
|
|
if (plSubWorldMsg::ConvertNoRef(cmd)) // don't want to enter a subworld (changes the avatar SDL)
|
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
|
|
|
|
plSoundMsg *snd = plSoundMsg::ConvertNoRef( cmd ); |
|
|
|
plSoundMsg *snd = plSoundMsg::ConvertNoRef( cmd ); |
|
|
|
if( snd != nil && snd->Cmd( plSoundMsg::kIsLocalOnly ) ) |
|
|
|
if( snd != nil && snd->Cmd( plSoundMsg::kIsLocalOnly ) ) |
|
|
@ -362,6 +364,7 @@ bool plResponderModifier::IContinueSending() |
|
|
|
plArmatureMod *avatar = plAvatarMgr::GetInstance()->GetLocalAvatar(); |
|
|
|
plArmatureMod *avatar = plAvatarMgr::GetInstance()->GetLocalAvatar(); |
|
|
|
if(avatar) |
|
|
|
if(avatar) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
swMsg->ClearReceivers(); |
|
|
|
swMsg->AddReceiver(avatar->GetKey()); |
|
|
|
swMsg->AddReceiver(avatar->GetKey()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|