1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

reduced corner_bonus in 334

This commit is contained in:
Zeno Rogue 2019-10-12 13:16:09 +02:00
parent 60ff50e8e2
commit 31861cc45a

View File

@ -1049,6 +1049,7 @@ void geometry_information::compute_cornerbonus() {
corner_bonus = 0;
for(hpcshape sh: shWall3D) for(int i=sh.s; i<sh.e; i++)
corner_bonus = max(corner_bonus, hdist0(hpc[i]));
if(cgflags & qIDEAL) corner_bonus = 3;
}
#endif