forked from teamnwah/openmw-tes3coop
handle NCC flag
This commit is contained in:
parent
b4db339fd5
commit
bf3aad8be0
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ void ManualBulletShapeLoader::handleNode(Nif::Node *node, int flags,
|
|||
// affecting the entire subtree of this node
|
||||
Nif::NiStringExtraData *sd = (Nif::NiStringExtraData*)e;
|
||||
|
||||
if (sd->string == "NCO")
|
||||
// not sure what the difference between NCO and NCC is, or if there even is one
|
||||
if (sd->string == "NCO" || sd->string == "NCC")
|
||||
{
|
||||
// No collision. Use an internal flag setting to mark this.
|
||||
flags |= 0x800;
|
||||
|
|
Loading…
Reference in a new issue