Browse Source

[diablo] 🐛 Fix incorrect dirt tiles in lavepools

Fixes #477
pull/1219/head
Anders Jenbo 5 years ago
parent
commit
c3456e7dbd
  1. 2
      Source/drlg_l3.cpp

2
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;
}
}
}

Loading…
Cancel
Save