mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Last minute fixes
This commit is contained in:
@ -767,10 +767,12 @@ void plNetLinkingMgr::IPostProcessLink( void )
|
||||
|
||||
if (fldr && info)
|
||||
if (!fldr->IsParentOf(info->nodeId, 1))
|
||||
VaultAddChildNodeAndWait(
|
||||
VaultAddChildNode(
|
||||
fldr->nodeId,
|
||||
info->nodeId,
|
||||
NetCommGetPlayer()->playerInt
|
||||
NetCommGetPlayer()->playerInt,
|
||||
nil,
|
||||
nil
|
||||
);
|
||||
|
||||
if (fldr)
|
||||
@ -792,10 +794,12 @@ void plNetLinkingMgr::IPostProcessLink( void )
|
||||
|
||||
if (fldr && info)
|
||||
if (!fldr->IsParentOf(info->nodeId, 1))
|
||||
VaultAddChildNodeAndWait(
|
||||
VaultAddChildNode(
|
||||
fldr->nodeId,
|
||||
info->nodeId,
|
||||
NetCommGetPlayer()->playerInt
|
||||
NetCommGetPlayer()->playerInt,
|
||||
nil,
|
||||
nil
|
||||
);
|
||||
|
||||
if (fldr)
|
||||
|
@ -4819,7 +4819,7 @@ namespace _VaultCreateChildAge {
|
||||
|
||||
// Add the children to the right places
|
||||
VaultAddChildNode(node->nodeId, *p->fAgeInfoId, 0, nil, nil);
|
||||
VaultAddChildNode(*p->fChildAgesFldr, *p->fAgeInfoId, 0, nil, nil);
|
||||
VaultAddChildNode(*p->fChildAgesFldr, node->nodeId, 0, nil, nil);
|
||||
|
||||
// Send the VaultNotify that the plNetLinkingMgr wants...
|
||||
plVaultNotifyMsg * msg = NEWZERO(plVaultNotifyMsg);
|
||||
|
Reference in New Issue
Block a user