1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-06 02:37:19 +00:00

fake_minecount

This commit is contained in:
Zeno Rogue 2025-03-27 15:52:02 +01:00
parent 451398f4f9
commit 0bd73a3960

View File

@ -3663,7 +3663,10 @@ EX const char* minetexts[8] = {
"Seven mines next to you!"
};
EX map<cell*, int> fake_minecount;
EX int countMinesAround(cell *c) {
if(fake_minecount.count(c)) return fake_minecount[c];
int mines = 0;
for(cell *c2: adj_minefield_cells(c))
if(c2->wall == waMineMine)