1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

fixed Euclidean Zebra

This commit is contained in:
Zeno Rogue 2017-10-29 23:11:14 +01:00
parent b214f3e97e
commit 5ff14c3d16

View File

@ -961,7 +961,8 @@ int fiftyval049(cell *c) {
// zebraval // zebraval
int zebra40(cell *c) { int zebra40(cell *c) {
if(ctof(c)) return (c->master->zebraval/10); if(euclid) return eupattern(c);
else if(ctof(c)) return (c->master->zebraval/10);
else if(sphere) return 0; else if(sphere) return 0;
else if(euclid) return eupattern(c); else if(euclid) return eupattern(c);
else { else {