1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-15 10:38:06 +00:00

whatever cont.

This commit is contained in:
Zeno Rogue
2019-05-05 17:33:31 +02:00
parent 531596f0e7
commit 0386f4179c
5 changed files with 11 additions and 14 deletions

View File

@@ -344,7 +344,7 @@ int zebra3(cell *c) {
namespace fieldpattern {
pair<int, bool> fieldval(cell *c) {
if(ctof(c)) return make_pair(c->master->fieldval, false);
if(ctof(c)) return make_pair(int(c->master->fieldval), false);
else return make_pair(btspin(c->master->fieldval, c->c.spin(0)), true);
}