summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMikko Tiusanen <ams@daug.net>2014-11-23 19:01:27 +0200
committerMikko Tiusanen <ams@daug.net>2014-11-23 19:01:27 +0200
commit67b5fff62082a31e576721e78e6f21cbc1a7bd08 (patch)
tree5bc5afde42a1e3201dcb3355ffa39247666ec045 /src
parent47baa4bc2f5f3c6e195d429ef020bbc86ac27ce7 (diff)
parentff1edc3cfc8332abc98e97ba6edb652551b53441 (diff)
Merge branch 'master' of github.com:mtiusane/new-edge
Diffstat (limited to 'src')
-rw-r--r--src/game/g_missile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c
index f9096ef..830d72a 100644
--- a/src/game/g_missile.c
+++ b/src/game/g_missile.c
@@ -287,7 +287,7 @@ void G_MissileImpact( gentity_t *ent, trace_t *trace )
return;
}
}
- else if ( other->s.eType == ET_BUILDABLE && other->s.modelindex == BA_A_REFLECTOR && ( !strcmp( ent->classname, "lcannon" ) || !strcmp( ent->classname, "pulse" ) || !strcmp( ent->classname, "lasgun" ) ) )
+ else if ( other->s.eType == ET_BUILDABLE && other->s.modelindex == BA_A_REFLECTOR && ( !strcmp( ent->classname, "lcannon" ) || !strcmp( ent->classname, "pulse" ) || !strcmp( ent->classname, "lasgun" ) || !strcmp( ent->classname, "rocket" ) ) )
{
G_BounceMissile( ent, trace );