Merge branch 'type-cleanup' of https://github.com/Paril/ericw-tools into type-cleanup

This commit is contained in:
Jonathan 2021-10-19 16:39:49 -04:00
commit 46ea7b4822
1 changed files with 5 additions and 0 deletions

View File

@ -1051,6 +1051,11 @@ void Brush_LoadEntity(mapentity_t *dst, const mapentity_t *src, const int hullnu
const bool func_illusionary_visblocker = (0 == Q_strcasecmp(classname, "func_illusionary_visblocker"));
// _omitbrushes 1 just discards all brushes in the entity.
// could be useful for geometry guides, selective compilation, etc.
if (atoi(ValueForKey(src, "_omitbrushes")))
return;
// _omitbrushes 1 just discards all brushes in the entity.
// could be useful for geometry guides, selective compilation, etc.
if (atoi(ValueForKey(src, "_omitbrushes")))