I am trying to read the contents of a forge cfg file
from my bukkit plugin. I can successfully get the file, however I cannot read the values from bukkits' FileConfiguration
(as far as I'm aware of). Here is an example forge cfg file
from a mod:
# Configuration file
####################
# player1
####################
player1 {
I:player2=1
I:player3=1
}
####################
# player2
####################
player2 {
I:player1=1
I:player3=1
I:player4=1
}
Is it possible to read these values?