Skip to content
Snippets Groups Projects
Commit c93101aa authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Merge branch 'eggshield-laser-fix' into 'next'

Eggshield laser fix

Fix for http://mb.srb2.org/showthread.php?t=42250

See merge request !152
parents 45fdfd9f ad30c411
Branches
Tags
1 merge request!156A spike bug no more
......@@ -5342,6 +5342,10 @@ void T_LaserFlash(laserthink_t *flash)
&& thing->flags & MF_BOSS)
continue; // Don't hurt bosses
// Don't endlessly kill egg guard shields (or anything else for that matter)
if (thing->health <= 0)
continue;
top = P_GetSpecialTopZ(thing, sourcesec, sector);
bottom = P_GetSpecialBottomZ(thing, sourcesec, sector);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment