Hey guys! I'm working with FileConfigurations here, and I want to set a key that contains periods in it For example:
key1:
key2.with.a.long.name: "value"
But when I use
config.setString("key1.key2.with.a.long.name", "value") It'll turn into the following instead:
key1:
key2:
with:
a:
long:
name: "value
Is there some way to get around this?

