From f80aa94bfa921273f6dfbe565bcb4caba6bc45b2 Mon Sep 17 00:00:00 2001 From: LimePotato Date: Mon, 30 Oct 2023 13:02:35 -0600 Subject: [PATCH] cough --- src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt b/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt index 7905aec..f67a427 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt @@ -33,7 +33,8 @@ class Config { prop.setProperty("windowHeight", "50") prop.setProperty("dungeonLevels", "2") prop.setProperty("sidebarWidth", "18") - prop.setProperty("logAreaHeight", "12")} + prop.setProperty("logAreaHeight", "12") + } val out: OutputStream = FileOutputStream(file) prop.store(out, "PotRogue Configuration File, restart game if changed value.") }