From 843a53d07c6d4446197c7f74d096793618035259 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 14 Aug 2019 08:22:21 +0200 Subject: [PATCH] fixed a bug with Archimedean hyperbolic tilings --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index 9530ba19..b0852ccf 100644 --- a/cell.cpp +++ b/cell.cpp @@ -681,7 +681,7 @@ cdata *getHeptagonCdata_legacy(heptagon *h) { if(sphere || quotient) h = currentmap->gamestart()->master; - if(h == currentmap->gamestart()->master) { + if(h == currentmap->getOrigin()) { h->cdata = new cdata(orig_cdata); for(int& v: h->cdata->val) v = 0; h->cdata->bits = reptilecheat ? (1 << 21) - 1 : 0;