1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

Merge pull request #372 from jlmjlm/tidefix2

Check tide before drawing cells.
This commit is contained in:
Zeno Rogue
2024-05-09 20:42:03 +02:00
committed by GitHub
3 changed files with 4 additions and 2 deletions

View File

@@ -429,7 +429,8 @@ EX void initgame() {
if(vid.use_smart_range == 2) vid.use_smart_range = 1;
}
if(!allowIncreasedSight()) vid.use_smart_range = 0;
callhooks(hooks_post_initgame);
calcTidalPhase();
callhooks(hooks_post_initgame);
}
bool havesave = true;