mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
fixed disappear to stop at the correct level
This commit is contained in:
parent
49650ee691
commit
6f8b986d67
@ -686,7 +686,7 @@ void disappear_lines() {
|
||||
nz++;
|
||||
}
|
||||
}
|
||||
while(nz < well_size + camera_level) {
|
||||
while(nz <= camera_level) {
|
||||
cell *c0 = get_at(lev, -nz);
|
||||
c0->wall = waNone;
|
||||
nz++;
|
||||
|
Loading…
Reference in New Issue
Block a user