2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

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.
This commit is contained in:
2012-12-26 16:56:04 -05:00
parent 3d15f529aa
commit 8117aa8bcc

View File

@ -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);
}