Streamline fortgun()'s efficiency comparison
Use >= 60 instead of > 59, for consistency with similar comparisons elsewhere.
This commit is contained in:
parent
da48ba6d13
commit
76575df96b
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ fortrange(struct sctstr *sp)
|
||||||
return -1.0;
|
return -1.0;
|
||||||
|
|
||||||
rng = effrange(14.0 * fire_range_factor, np->nat_level[NAT_TLEV]);
|
rng = effrange(14.0 * fire_range_factor, np->nat_level[NAT_TLEV]);
|
||||||
if (sp->sct_effic > 59)
|
if (sp->sct_effic >= 60)
|
||||||
rng++;
|
rng++;
|
||||||
return rng;
|
return rng;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue