fixed buildEquidistant by using MODFIXER instead of 42

This commit is contained in:
Zeno Rogue 2018-07-10 21:24:31 +02:00
parent bc558a18df
commit 291f326634
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ void buildEquidistant(cell *c) {
mcv2 = coastval(c4, b);
break;
}
q = (bsid-j+42) % c2->type;
q = (bsid-j+MODFIXER) % c2->type;
c3 = c2->mov[q];
if(coastval(c3, b) < mcv) {
cell *c4 = createMovR(c2, bsid-1);