mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Merge pull request #575 from kondrak/master
Fixed the Jorg skin bug present since the original Quake 2 release.
This commit is contained in:
commit
7f339952cb
1 changed files with 2 additions and 2 deletions
|
@ -915,8 +915,8 @@ SP_monster_jorg(edict_t *self)
|
|||
|
||||
self->movetype = MOVETYPE_STEP;
|
||||
self->solid = SOLID_BBOX;
|
||||
self->s.modelindex = gi.modelindex("models/monsters/boss3/rider/tris.md2");
|
||||
self->s.modelindex2 = gi.modelindex("models/monsters/boss3/jorg/tris.md2");
|
||||
self->s.modelindex = gi.modelindex("models/monsters/boss3/jorg/tris.md2");
|
||||
self->s.modelindex2 = gi.modelindex("models/monsters/boss3/rider/tris.md2");
|
||||
VectorSet(self->mins, -80, -80, 0);
|
||||
VectorSet(self->maxs, 80, 80, 140);
|
||||
|
||||
|
|
Loading…
Reference in a new issue