Fix mdl/spr check condition

This commit is contained in:
mittorn 2018-08-14 01:53:03 +07:00
parent b747a52f79
commit 348e36bd60
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ bool Ent_CheckModel( const char *model )
if( submodel < 1 || world && submodel >= world->numsubmodels )
return false;
} // do not allow to set different model types. bsp models will destroy all submodels on map
else if( !strstr( model, ".mdl" ) || !strstr( model, ".spr" ) )
else if( !strstr( model, ".mdl" ) && !strstr( model, ".spr" ) )
return false;
return true;
}