diff --git a/components/nif/physics.cpp b/components/nif/physics.cpp index 6368537e60..f855edb30a 100644 --- a/components/nif/physics.cpp +++ b/components/nif/physics.cpp @@ -770,6 +770,11 @@ namespace Nif filter.read(nif); } + void bhkListShape::post(Reader& nif) + { + postRecordList(nif, mSubshapes); + } + void bhkCompressedMeshShape::read(NIFStream* nif) { mTarget.read(nif); diff --git a/components/nif/physics.hpp b/components/nif/physics.hpp index 286c8cc353..d3ac22b4b8 100644 --- a/components/nif/physics.hpp +++ b/components/nif/physics.hpp @@ -730,6 +730,7 @@ namespace Nif std::vector mHavokFilters; void read(NIFStream* nif) override; + void post(Reader& nif) override; }; struct bhkCompressedMeshShape : public bhkShape