summaryrefslogtreecommitdiff
path: root/src/graphics.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics.c')
-rw-r--r--src/graphics.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/graphics.c b/src/graphics.c
index 6225c6f..233a178 100644
--- a/src/graphics.c
+++ b/src/graphics.c
@@ -3255,7 +3255,7 @@ void draw_parts(pixel *vid)
}
else if (t==PT_GBMB)
{
- if (parts[i].tmp==0) {
+ if (parts[i].life<=0) {//not yet detonated
cr = PIXR(ptypes[t].pcolors);
cg = PIXG(ptypes[t].pcolors);
cb = PIXB(ptypes[t].pcolors);
@@ -3285,7 +3285,7 @@ void draw_parts(pixel *vid)
blendpixel(vid, nx, ny, cr, cg, cb, 255);
}
}
- else if (parts[i].tmp==1) {
+ else {//exploding
cr = PIXR(ptypes[t].pcolors);
cg = PIXG(ptypes[t].pcolors);
cb = PIXB(ptypes[t].pcolors);
@@ -3305,10 +3305,6 @@ void draw_parts(pixel *vid)
blendpixel(vid, nx, ny, cr, cg, cb, 255);
}
}
- else {
- blendpixel(vid, nx, ny, 255, 255, 255, 255);
- }
-
}
else if (ptypes[t].properties&PROP_HOT_GLOW && parts[i].temp>(ptransitions[t].thv-800.0f))
{