mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-19 16:00:56 +00:00
Blaster shots shall not explode at the skybox
This commit is contained in:
parent
4a81e58128
commit
7958767922
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue