Fix incomplete implementation of SummationGenerator.Serializer.serialize

This commit is contained in:
thedarkcolour 2024-03-13 22:25:07 -07:00
parent 31b1023c6e
commit 856de95cea

View File

@ -50,6 +50,7 @@ public record SummationGenerator(NumberProvider[] providers) implements NumberPr
for (var provider : value.providers) {
array.add(ctx.serialize(provider, NumberProvider.class));
}
json.add("values", array);
}
@Override