From a73b93cd454ca36c37f3e430f737b4d280039bdd Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sat, 18 Jan 2020 03:38:14 +0100 Subject: [PATCH] Fix crypt and hive color cycleing --- Source/diablo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index d0e6f14ab..b9704b3b3 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -2099,9 +2099,9 @@ void diablo_color_cyc_logic() if (leveltype == DTYPE_HELL) { lighting_color_cycling(); #ifdef HELLFIRE - } else if (currlevel >= 20) { + } else if (currlevel >= 21) { palette_update_crypt(); - } else if (currlevel >= 16) { + } else if (currlevel >= 17) { palette_update_hive(); #endif } else if (leveltype == DTYPE_CAVES) {