X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=radiant%2Feclass_doom3.cpp;h=f9598e4b9d094707ff541de9b505474350be745c;hb=85351b6e7f70fc8cdec00844bbb22ac96068150d;hp=620cc276808309c33c868327dfb7e8e78aa30c62;hpb=b7e36c120eb1546a6c6f97f30e42ab7f9a559c61;p=xonotic%2Fnetradiant.git diff --git a/radiant/eclass_doom3.cpp b/radiant/eclass_doom3.cpp index 620cc276..f9598e4b 100644 --- a/radiant/eclass_doom3.cpp +++ b/radiant/eclass_doom3.cpp @@ -502,7 +502,9 @@ static bool EntityClass_parse( EntityClass& entityClass, Tokeniser& tokeniser ){ else { CopiedString tmp( key ); - ASSERT_MESSAGE( !string_equal_n( key, "editor_", 7 ), "unsupported editor key: " << makeQuoted( key ) ); + if ( string_equal_n( key, "editor_", 7 ) ) { + globalErrorStream() << "unsupported editor key " << makeQuoted( key ) ; + } EntityClassAttribute& attribute = EntityClass_insertAttribute( entityClass, key ).second; attribute.m_type = "string"; const char* value;