From c9ada852aa4a0542c1ea8e1d626733fe14951894 Mon Sep 17 00:00:00 2001 From: Rob Cutmore Date: Tue, 3 May 2016 06:19:47 -0400 Subject: [PATCH] Undo including pathgrids in ID check --- apps/opencs/model/world/data.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/opencs/model/world/data.cpp b/apps/opencs/model/world/data.cpp index 414329aa2..5c81d3b08 100644 --- a/apps/opencs/model/world/data.cpp +++ b/apps/opencs/model/world/data.cpp @@ -1139,8 +1139,7 @@ bool CSMWorld::Data::hasId (const std::string& id) const getBodyParts().searchId (id)!=-1 || getSoundGens().searchId (id)!=-1 || getMagicEffects().searchId (id)!=-1 || - getReferenceables().searchId (id)!=-1 || - getPathgrids().searchId (id)!=-1; + getReferenceables().searchId (id)!=-1; } int CSMWorld::Data::count (RecordBase::State state) const