in fake, adjust sizes

This commit is contained in:
Zeno Rogue 2020-05-16 11:22:09 +02:00
parent 5f9ad96959
commit ae59e50b80
1 changed files with 10 additions and 0 deletions

View File

@ -581,6 +581,16 @@ void geometry_information::prepare_basics() {
scalefactor = crossf / hcrossf7;
orbsize = crossf;
if(fake::in()) {
auto& u = fake::underlying_cgip;
crossf = u->crossf * fake::scale;
scalefactor = u->scalefactor * fake::scale;
orbsize = u->orbsize * fake::scale;
hexf = u->hexf * fake::scale;
rhexf = u->rhexf * fake::scale;
hexvdist = u->hexvdist * fake::scale;
}
if(scale_used()) scalefactor *= vid.creature_scale;
zhexf = BITRUNCATED ? hexf : crossf* .55;