From b4701b6d2ce0f603707d87c0ccfbb8b05d4c1883 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 1 Jan 2021 22:58:45 +0100 Subject: [PATCH] [hellfire] Bug: Fix missing range attach sound --- Source/monster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/monster.cpp b/Source/monster.cpp index b4a7b4e97..afb62715e 100644 --- a/Source/monster.cpp +++ b/Source/monster.cpp @@ -2689,7 +2689,7 @@ BOOL M_DoRSpAttack(int i) monster[i]._mVar3, 0); #ifdef HELLFIRE - if (Monsters[i].Snds[3][0] != 0) // BUGFIX `Monsters[i].` should be `monster[i].MType->` + if (monster[i].MType->Snds[3][0] != 0) // BUGFIX `Monsters[i].` should be `monster[i].MType->` (fixed) #endif PlayEffect(i, 3); }