From 8cbd67974eb32613d35438b324f8a5ff68a88e55 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 23 Nov 2020 19:32:12 +0100 Subject: [PATCH] - Exhumed: fixed typo in player taunt code. --- source/exhumed/src/runlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exhumed/src/runlist.cpp b/source/exhumed/src/runlist.cpp index 545d7404c..bda15be34 100644 --- a/source/exhumed/src/runlist.cpp +++ b/source/exhumed/src/runlist.cpp @@ -1637,7 +1637,7 @@ void runlist_DamageEnemy(int nSprite, int nSprite2, short nDamage) runlist_SendMessageToRunRec(nRun, (nSprite2 & 0xFFFF) | 0x80000, nDamage * 4); // is there now one less creature? (has one died) - if (nPreCreaturesKilled > nCreaturesKilled && nSprite2 > -1) + if (nPreCreaturesKilled < nCreaturesKilled && nSprite2 > -1) { if (sprite[nSprite2].statnum != 100) { return;