From 7c8ad05bc25d16984fd5d46ade46f397a724ee27 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 16 Jan 2026 21:38:00 -0500 Subject: [PATCH] buffer fix --- core/src/mindustry/Vars.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/Vars.java b/core/src/mindustry/Vars.java index 4d2b9274a8..2063cbacf7 100644 --- a/core/src/mindustry/Vars.java +++ b/core/src/mindustry/Vars.java @@ -539,7 +539,7 @@ public class Vars implements Loadable{ } StringMap globalBundle = new StringMap(); - PropertiesUtils.load(globalBundle, files.internal("bundles/global.properties").reader(512, "UTF-8")); + PropertiesUtils.load(globalBundle, files.internal("bundles/global.properties").reader("UTF-8")); bundle.getProperties().putAll(globalBundle); } }