From 7958767922bc8e95f7efadc30979f7aa7478510b Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Sun, 26 Aug 2012 15:38:00 +0200 Subject: [PATCH] Blaster shots shall not explode at the skybox --- src/game/g_weapon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 8b3f6a9a..fc77feb1 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -390,7 +390,7 @@ blaster_touch(edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf) return; } - if (surf && (!surf->flags & SURF_SKY)) + if (surf && (surf->flags & SURF_SKY)) { G_FreeEdict(self); return;