factoriolib / flib

A set of high-quality, commonly-used utilities for creating Factorio mods.
https://mods.factorio.com/mod/flib
MIT License
67 stars 15 forks source link

Fix crash in serialise_localised_string #21

Closed dbeckwith closed 3 years ago

dbeckwith commented 3 years ago

serialise_localised_string was assuming that non-table values of a LocalisedString were always strings, which is not true. Other primitive values are also allowed as arguments to localised strings. I also improved the comma-separator logic to not use gsub.

raiguard commented 3 years ago

Thank you!