1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 18:07:41 +00:00

unlimited modecodes

This commit is contained in:
Zeno Rogue
2017-08-18 01:40:07 +02:00
parent f9cd83b8a7
commit 5095826bee
3 changed files with 30 additions and 18 deletions

View File

@@ -546,7 +546,10 @@ bool isAlchAny(cell *c);
extern cellwalker cwt; // player character position
extern int sval;
extern int items[ittypes], hiitems[MODECODES][ittypes], kills[motypes], explore[10], exploreland[10][landtypes], landcount[landtypes];
extern int items[ittypes], kills[motypes], explore[10], exploreland[10][landtypes], landcount[landtypes];
typedef int modecode_t;
extern map<modecode_t, array<int, ittypes> > hiitems;
extern eLand firstland, specialland;
bool pseudohept(cell *c);