1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 14:02:59 +00:00

fixed the index order for shpos

This commit is contained in:
Zeno Rogue
2021-05-22 23:01:32 +02:00
parent a9ec2be47e
commit 90c7d31483
2 changed files with 4 additions and 4 deletions

View File

@@ -1657,6 +1657,6 @@ addHook(hooks_removecells, 0, [] () {
eliminate_if(buggycells, is_cell_removed);
eliminate_if(butterflies, [] (pair<cell*,int>& p) { return is_cell_removed(p.first); });
for(int i=0; i<SHSIZE; i++) for(int p=0; p<MAXPLAYER; p++)
set_if_removed(shpos[p][i], NULL);
set_if_removed(shpos[i][p], NULL);
});
}