publish: Increase pitch range for small transactions

generated from commit 5fcd2fcb9c
This commit is contained in:
Joshua Seigler 2019-04-03 11:36:10 -04:00
parent 6a9dc6aff6
commit 793c9ef4ab
2 changed files with 2 additions and 2 deletions

View file

@ -6776,7 +6776,7 @@ var App = {
console.log(data);
if (!muted) {
if (data.valueOut < 10) {
playSound('tx-sm', playbackRate(data.valueOut, 0.00001, 10, 1, 1.5));
playSound('tx-sm', playbackRate(data.valueOut, 0.00001, 10, 1, 4));
} else if (data.valueOut < 1000) {
playSound('tx-md', playbackRate(data.valueOut, 10, 1000, 0.5, 1));
} else if (data.valueOut >= 1000) {

File diff suppressed because one or more lines are too long