mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 12:19:18 +00:00
fixed the Prairie bug
This commit is contained in:
parent
ae51914cea
commit
1286c66e85
@ -2844,7 +2844,7 @@ namespace prairie {
|
||||
vector<cell*> whirlline;
|
||||
whirlline.push_back(c);
|
||||
cell *c2 = prev(c);
|
||||
while(c2 && !cl.add(c2)) {
|
||||
while(c2 && cl.add(c2)) {
|
||||
whirlline.push_back(c2);
|
||||
c2 = prev(c2);
|
||||
// in sphere/quotient geometries, never break before a bull
|
||||
|
Loading…
Reference in New Issue
Block a user