Fix missing newline in generated config output

- Added a newline after appending the formatted string in `ConfigProvider.java`.
This commit is contained in:
Chris Toph 2025-02-25 02:19:45 -05:00
parent 0e0d70a2e6
commit e6a6314f6b

View file

@ -24,6 +24,7 @@ public class ConfigProvider implements SimpleConfig.DefaultConfig {
contents += String.format("""
# %s
%s = %s
""", comment, key, value);
}