Do not stringify reported monitor values.

Consulted @fsih, should be fine since formatting is being handled in the GUI anyway.
This commit is contained in:
Paul Kaplan 2018-05-09 11:39:14 -04:00
parent cc1314d289
commit 6793349898

View file

@ -90,7 +90,7 @@ const handleReport = function (
sequencer.runtime.requestUpdateMonitor(Map({
id: currentBlockId,
spriteName: targetId ? sequencer.runtime.getTargetById(targetId).getName() : null,
value: String(resolvedValue)
value: resolvedValue
}));
}
}