From c1f86620db95749f8f648df8bad1c96de20f2e09 Mon Sep 17 00:00:00 2001 From: Molgrum Date: Sun, 24 Feb 2008 19:20:51 +0000 Subject: [PATCH] Backpacks are visible again, now let's throw lots of eggs at Spike. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2934 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_ppl.c | 4 ++-- engine/gl/gl_rmain.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/gl/gl_ppl.c b/engine/gl/gl_ppl.c index 4d7e77af1..21ab30909 100644 --- a/engine/gl/gl_ppl.c +++ b/engine/gl/gl_ppl.c @@ -2259,7 +2259,7 @@ void PPL_BaseEntTextures(void) if (currententity->model->engineflags & MDLF_NOTREPLACEMENTS) { - if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_halflife) + if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_alias) if (!ruleset_allow_sensative_texture_replacements.value) continue; } @@ -3126,7 +3126,7 @@ void PPL_DrawEntLighting(dlight_t *light, vec3_t colour) if (currententity->model->engineflags & MDLF_NOTREPLACEMENTS) { - if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_halflife) + if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_alias) if (!ruleset_allow_sensative_texture_replacements.value) continue; } diff --git a/engine/gl/gl_rmain.c b/engine/gl/gl_rmain.c index 909281ef8..10c48991c 100644 --- a/engine/gl/gl_rmain.c +++ b/engine/gl/gl_rmain.c @@ -741,7 +741,7 @@ void GLR_DrawEntitiesOnList (void) if (currententity->model->engineflags & MDLF_NOTREPLACEMENTS) { - if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_halflife) + if (currententity->model->fromgame != fg_quake || currententity->model->type != mod_alias) if (!ruleset_allow_sensative_texture_replacements.value) continue; }