DRLG_L5 cleanups (Crypt support) (#1491)

This commit is contained in:
galaxyhaxz 2019-09-02 14:05:38 -05:00 committed by Anders Jenbo
commit 4658959f44
6 changed files with 981 additions and 1 deletions

View file

@ -797,7 +797,18 @@ int InitLevelType(int l)
if (l >= 9 && l <= 12)
return 3;
#ifdef HELLFIRE
if (l >= 13 && l <= 16)
return 4;
if (l >= 21 && l <= 24)
return 1;
if (l >= 17 && l <= 20)
return 3;
return 1;
#else
return 4;
#endif
}
void SetupLocalCoords()