From 8117aa8bccee490507341f414fef1e4eb350aef7 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 26 Dec 2012 16:56:04 -0500 Subject: [PATCH] Fix Cloth Links A typo introduced in 49dfb4e5 caused camera stacks in AgeLink nodes to overwrite spawn point names. This broke shell and journey cloth links in the Relto bookshelf. --- Sources/Plasma/PubUtilLib/plVault/plVaultNodeAccess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/PubUtilLib/plVault/plVaultNodeAccess.cpp b/Sources/Plasma/PubUtilLib/plVault/plVaultNodeAccess.cpp index 77c70acf..09988ec6 100644 --- a/Sources/Plasma/PubUtilLib/plVault/plVaultNodeAccess.cpp +++ b/Sources/Plasma/PubUtilLib/plVault/plVaultNodeAccess.cpp @@ -814,7 +814,7 @@ void VaultAgeLinkNode::GetSpawnPoints (plSpawnPointVec * out) const { if ( izer2.size() > 1) point.fSpawnPt = izer2[1]; if ( izer2.size() > 2) - point.fSpawnPt = izer2[2]; + point.fCameraStack = izer2[2]; out->push_back(point); }