From eb70283355101fb1a5b832ac051e35e0742b0f02 Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Sat, 4 Jan 2020 18:40:12 +0100 Subject: [PATCH] Use current directory explicitly for bundle updator (#1316) --- tools/src/mindustry/tools/BundleLauncher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/mindustry/tools/BundleLauncher.java b/tools/src/mindustry/tools/BundleLauncher.java index 668d4665fe..1f73b26f28 100644 --- a/tools/src/mindustry/tools/BundleLauncher.java +++ b/tools/src/mindustry/tools/BundleLauncher.java @@ -15,7 +15,7 @@ public class BundleLauncher{ OrderedMap base = new OrderedMap<>(); PropertiesUtils.load(base, new InputStreamReader(new FileInputStream(file))); Array removals = new Array<>(); - Fi.get("").walk(child -> { + Fi.get(".").walk(child -> { if(child.name().equals("bundle.properties") || child.isDirectory() || child.toString().contains("output")) return;