1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-12 07:16:01 +00:00

make_wall now gets the actual wall ID

This commit is contained in:
Zeno Rogue
2024-06-11 00:06:16 +02:00
parent 0fdfd0c406
commit f3e1d1c447
3 changed files with 19 additions and 17 deletions

View File

@@ -4396,7 +4396,7 @@ int hrmap::wall_offset(cell *c) {
for(int i=0; i<isize(ss.faces); i++) {
cgi.make_wall(wo + i, ss.faces[i]);
cgi.make_wall(wo, i, ss.faces[i]);
cgi.walltester[wo + i] = ss.walltester[i];
}