From 45c29e8395636a2a4e0f7ddec03cfdb8bb493541 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Fri, 30 Jul 2021 18:08:12 +0200 Subject: [PATCH] Fix BauSystem Signed-off-by: yoyosource --- BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java b/BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java index 3e2d4976..4b04bdd6 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java @@ -110,7 +110,7 @@ public class BauSystem extends JavaPlugin implements Listener { private void fixBauSystem() { int number = -1; try { - String string = new File(world.getWorldFolder(), "sections.yapion").getCanonicalPath(); + String string = new File(world.getWorldFolder(), "sections.yml").getCanonicalPath(); if (string.endsWith("/sections3.yml")) number = 3; if (string.endsWith("/sections4.yml")) number = 4; } catch (IOException e) {