mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-07-01 00:08:50 +00:00
fixed missing fargen in some geometries
This commit is contained in:
+1
-1
@@ -311,7 +311,7 @@ EX void clear_item(cell *c) {
|
||||
}
|
||||
|
||||
EX void giantLandSwitch(cell *c, int d, cell *from) {
|
||||
bool fargen = d == 9;
|
||||
bool fargen = d == 9 || (d == 8 && BARLEV == 8);
|
||||
switch(c->land) {
|
||||
|
||||
case laPrairie: // -------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user