HOTFIX: remove const from SumInputNode to allow default value fixing

This commit is contained in:
hppeng 2022-06-26 05:35:04 -07:00
parent 3f5ed9b38b
commit 1303c959b1

View file

@ -928,7 +928,7 @@ class SkillPointSetterNode extends ComputeNode {
*/
class SumNumberInputNode extends InputNode {
compute_func(input_map) {
const value = this.input_field.value;
let value = this.input_field.value;
if (value === "") { value = 0; }
let input_num = 0;