1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-30 00:49:03 +00:00

fixed bugs when switching FPP in E2 torus

This commit is contained in:
Zeno Rogue
2021-02-06 12:25:30 +01:00
parent c57566f9da
commit de498da1d1
4 changed files with 17 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ struct hrmap {
virtual ~hrmap() { };
virtual vector<cell*>& allcells();
virtual void verify() { }
virtual void on_dim_change() { }
virtual void link_alt(const cellwalker& hs) { }
virtual void generateAlts(heptagon *h, int levs = default_levs(), bool link_cdata = true);
heptagon *may_create_step(heptagon *h, int direction) {