From c3456e7dbd257bc8018adc3202ed04d1f38fcbaf Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sat, 20 Mar 2021 20:33:58 +0100 Subject: [PATCH] [diablo] :bug: Fix incorrect dirt tiles in lavepools Fixes #477 --- Source/drlg_l3.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/drlg_l3.cpp b/Source/drlg_l3.cpp index db6db7f20..94c7f3d4b 100644 --- a/Source/drlg_l3.cpp +++ b/Source/drlg_l3.cpp @@ -1602,6 +1602,8 @@ static void DRLG_L3PoolFix() && dungeon[dunx + 1][duny] >= 25 && dungeon[dunx + 1][duny] <= 41 && dungeon[dunx + 1][duny + 1] >= 25 && dungeon[dunx + 1][duny + 1] <= 41) { dungeon[dunx][duny] = 33; + } else if (dungeon[dunx + 1][duny] == 35 || dungeon[dunx + 1][duny] == 37) { + dungeon[dunx][duny] = 33; } } }