Change the flea sound frequency change rate to be less steep.

This commit is contained in:
Jeremy Rand 2021-02-16 01:46:46 -05:00
parent bf943fee07
commit c52671ce95
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ sub initFleaFreqs
for (my $i = 1; $i < $gEquates{"NUM_FLEA_FREQS"}; $i++)
{
$gFleaFreqs[$i] = ($gFleaFreqs[$i - 1] * 100000000) / 101161944;
$gFleaFreqs[$i] = ($gFleaFreqs[$i - 1] * 100000000) / 100580970;
}
}