------------------------------------------------------------------------

r4234 | acceptthis | 2013-03-02 18:03:32 +0000 (Sat, 02 Mar 2013) | 1 line

main model size wasn't set for q2bsps, breaking qw player physics due to an optimisation.
------------------------------------------------------------------------


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4230 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2013-03-12 23:12:30 +00:00
parent b2bcc1be15
commit eba3f5d4d1
1 changed files with 3 additions and 0 deletions

View File

@ -1048,6 +1048,9 @@ qboolean CMod_LoadSubmodels (lump_t *l)
out->numsurfaces = LittleLong (in->numfaces);
}
VectorCopy(map_cmodels[0].mins, loadmodel->mins);
VectorCopy(map_cmodels[0].maxs, loadmodel->maxs);
return true;
}