1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-21 04:39:58 +00:00

fixed a crash bug with Zebra quotient

This commit is contained in:
Zeno Rogue 2020-04-01 11:27:13 +02:00
parent c60714f145
commit abc2c057c8

View File

@ -18,7 +18,7 @@ EX namespace quotientspace {
code get(heptspin hs) {
code res;
res.connections.resize(S7);
res.connections.resize(S7+1);
res.connections[0] = cod(hs.at);
for(int i=1; i<=S7; i++) {
res.connections[i] = cod((hs + wstep).at);