1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 20:29:17 +00:00

correct updir in gBinaryTiling

This commit is contained in:
Zeno Rogue 2019-08-02 22:08:39 +02:00
parent 3cb39a0f8c
commit 29d3410aa6

View File

@ -505,6 +505,7 @@ namespace binary {
int updir() { int updir() {
if(geometry == gBinary4) return 3; if(geometry == gBinary4) return 3;
if(geometry == gBinaryTiling) return 5;
if(penrose) return 0; if(penrose) return 0;
return S7-1; return S7-1;
} }