mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-12-18 03:58:04 +00:00
crystal:: fixed Crystal344
This commit is contained in:
@@ -555,7 +555,10 @@ struct hrmap_crystal : hrmap_standard {
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
transmatrix adj(cell *c, int d) override { return hrmap_standard::adj(c, d); }
|
transmatrix adj(cell *c, int d) override {
|
||||||
|
if(crystal3()) return adj(c->master, d);
|
||||||
|
return hrmap_standard::adj(c, d);
|
||||||
|
}
|
||||||
|
|
||||||
void draw() override {
|
void draw() override {
|
||||||
if(!crystal3()) { hrmap_standard::draw(); return; }
|
if(!crystal3()) { hrmap_standard::draw(); return; }
|
||||||
|
|||||||
Reference in New Issue
Block a user