1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-21 12:49:10 +00:00

Fix plNetClient.

This commit is contained in:
Darryl Pogue
2012-01-29 01:46:26 -08:00
parent 745378f9be
commit e7319c8ab2
6 changed files with 20 additions and 12 deletions

View File

@ -461,7 +461,8 @@ void plNetClientMgr::StartLinkInFX()
plLinkEffectsTriggerMsg* lem = new plLinkEffectsTriggerMsg();
lem->SetLeavingAge(false); // linking in
lem->SetLinkKey(fLocalPlayerKey);
lem->SetLinkInAnimKey(avMod->GetLinkInAnimKey());
plKey animKey = avMod->GetLinkInAnimKey();
lem->SetLinkInAnimKey(animKey);
// indicate if we are invisible
if (avMod && avMod->IsInStealthMode() && avMod->GetTarget(0))
@ -1287,7 +1288,7 @@ void plNetClientMgr::QueueDisableNet (bool showDlg, const char str[]) {
msg->Ref();
fDisableMsg = msg;
IDisableNet();
#endif;
#endif
}
void plNetClientMgr::IDisableNet () {