From feedf4919ea35c8093d791824db554ee298d4b8c Mon Sep 17 00:00:00 2001 From: Garux Date: Sun, 18 Feb 2018 20:56:18 +0300 Subject: [PATCH] consider func_detail* in Map Info dialog --- radiant/map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/map.cpp b/radiant/map.cpp index 8d87ca28..5ec4f064 100644 --- a/radiant/map.cpp +++ b/radiant/map.cpp @@ -867,7 +867,7 @@ bool pre( const scene::Path& path, scene::Instance& instance ) const { ++m_groupents; if( !string_equal_nocase( "func_group", entity->getKeyValue( "classname" ) ) && !string_equal_nocase( "_decal", entity->getKeyValue( "classname" ) ) && - !string_equal_nocase( "func_detail", entity->getKeyValue( "classname" ) ) ){ + !string_equal_nocase_n( "func_detail", entity->getKeyValue( "classname" ), 11 ) ){ ++m_groupents_ingame; ++m_ents_ingame; }