Fix save config

This commit is contained in:
jeffcheasey88 2024-04-16 11:58:32 +02:00
parent 5b8699cf9d
commit 9a0966322e

View file

@ -127,7 +127,7 @@ public class Configuration {
field.setAccessible(true);
if(field.getName().startsWith("_")) continue;
Object value = field.get(this);
writer.write(field.getName() + "=" + value);
writer.write(field.getName() + "=" + value+"\n");
}
writer.flush();
writer.close();