From 034ef2290b31fb902b574662581252c20395b5c5 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 22 Nov 2020 17:38:07 +0100 Subject: [PATCH] - RR: screen should not turn green when being attacked with alien poo. --- source/games/duke/src/game_misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/game_misc.cpp b/source/games/duke/src/game_misc.cpp index cdc4b6df3..e73632615 100644 --- a/source/games/duke/src/game_misc.cpp +++ b/source/games/duke/src/game_misc.cpp @@ -234,7 +234,7 @@ void drawoverlays(double smoothratio) // this does pain tinting etc from the CON V_AddBlend(pp->pals.r, pp->pals.g, pp->pals.b, pp->pals.a, blend); // loogies courtesy of being snotted on - if (pp->loogcnt > 0) + if (pp->loogcnt > 0 && !isRR()) { V_AddBlend(0, 63, 0, (pp->loogcnt >> 1), blend); }