Browse Source

Fix crypt and hive color cycleing

pull/876/head
Anders Jenbo 6 years ago
parent
commit
a73b93cd45
  1. 4
      Source/diablo.cpp

4
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) {

Loading…
Cancel
Save