From aa8fe86735da3f7d07a503a8778d97b5315edb14 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Fri, 21 Nov 2014 16:40:46 -0500 Subject: [PATCH] fix DEUT graphics (accidentally changed something) --- src/simulation/elements/DEUT.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/simulation/elements/DEUT.cpp b/src/simulation/elements/DEUT.cpp index e7892c888..55eb9ce57 100644 --- a/src/simulation/elements/DEUT.cpp +++ b/src/simulation/elements/DEUT.cpp @@ -132,9 +132,9 @@ int Element_DEUT::graphics(GRAPHICS_FUNC_ARGS) if(cpart->life>=240) { *firea = 60; - *firer = *colr += cpart->life*1; - *fireg = *colg += cpart->life*2; - *fireb = *colb += cpart->life*3; + *firer = *colr += 255; + *fireg = *colg += 255; + *fireb = *colb += 255; *pixel_mode |= PMODE_GLOW | FIRE_ADD; } else if(cpart->life>0)