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

fixed product shvid

This commit is contained in:
Zeno Rogue
2021-06-17 09:38:27 +02:00
parent c5e8d8aab3
commit 29dee36525
2 changed files with 12 additions and 1 deletions

View File

@@ -1278,7 +1278,7 @@ EX namespace hybrid {
int shvid(cell *c) override {
cell *c1 = hybrid::get_where(c).first;
return PIU( shvid(c1) );
return PIU( hr::shvid(c1) );
}
virtual transmatrix spin_to(cell *c, int d, ld bonus) override { if(d >= c->type-2) return Id; c = get_where(c).first; return in_underlying([&] { return currentmap->spin_to(c, d, bonus); }); }