mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-13 23:18:16 +00:00
fixed wrong starting land in any_wall hybrid
This commit is contained in:
parent
3146fdd02f
commit
ad235ee8e1
@ -959,9 +959,9 @@ EX eLand& get_euland(int c) {
|
||||
EX void clear_euland(eLand first) {
|
||||
euland.resize(max_vec);
|
||||
for(int i=0; i<max_vec; i++) euland[i] = laNone;
|
||||
if(!nonisotropic && !hybri) euland[0] = euland[1] = euland[max_vec-1] = first;
|
||||
if(!nonisotropic) euland[0] = euland[1] = euland[max_vec-1] = first;
|
||||
euland3.clear();
|
||||
euland3[0] = laCrossroads;
|
||||
euland3[0] = first;
|
||||
}
|
||||
|
||||
bool valid_wall_at(int c) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user