Fix configuration not being inited upon first boot

This commit is contained in:
MeowcaTheoRange 2024-11-23 20:37:39 -06:00
parent 16e68e2b16
commit 44f490b00a

View file

@ -3,7 +3,6 @@ extends Config
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
self.clone_config(Config.new_clear())
load_from_file()
func bind_keys() -> void:
@ -52,6 +51,8 @@ func load_from_file() -> void:
if err != OK:
return
self.clone_config(Config.new_clear())
for key in config.get_section_keys("FunkPanion"):
var value = config.get_value("FunkPanion", key)