From 3975a7cf63c2101f782e19339ca462e847c8687e Mon Sep 17 00:00:00 2001 From: yoyosource Date: Thu, 12 Jan 2023 10:10:49 +0100 Subject: [PATCH] Fix SkinCommand Signed-off-by: yoyosource --- .../src/de/steamwar/bausystem/features/team/SkinCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/team/SkinCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/team/SkinCommand.java index 7ce49b96..e5e56e24 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/team/SkinCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/team/SkinCommand.java @@ -76,8 +76,8 @@ public class SkinCommand extends SWCommand { } String name = String.join(" ", names); - File arenaFile = new File("sections19/custom/" + name + "/" + typeKuerzel + "Arena.schem"); - File testblockFile = region.hasType(RegionType.TESTBLOCK) ? new File("sections19/custom/" + name + "/" + typeKuerzel + "Testblock.schem") : null; + File arenaFile = new File("sections19/" + name + "/" + typeKuerzel + "Arena.schem"); + File testblockFile = region.hasType(RegionType.TESTBLOCK) ? new File("sections19/" + name + "/" + typeKuerzel + "Testblock.schem") : null; arenaFile.getParentFile().mkdirs(); if (testblockFile != null) {