1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-22 05:03:19 +00:00

changed creaturescale for hybrid

This commit is contained in:
Zeno Rogue 2019-08-27 16:48:22 +02:00
parent 04a1c2242b
commit 19ba287b75

View File

@ -592,6 +592,11 @@ void geometry_information::prepare_basics() {
plevel = M_PI * single_step / steps;
}
if(hybri) {
/* we do not want too short creatures, better make the scale factor smaller */
scalefactor = min(scalefactor, cgi.plevel * 1.8 / vid.height_width);
}
set_sibling_limit();
prepare_compute3();