From 5d47afd984b07b008a3c553df1ce4aaf2bcd8539 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sat, 16 Apr 2022 18:53:09 +0200 Subject: [PATCH] Moved some stuff together Signed-off-by: yoyosource --- .../bausystem/utils/NMSWrapper15.java | 2 +- .../bausystem/utils/NMSWrapper18.java | 2 +- .../other/items/WorldSpawnBauGuiItem.java | 61 ------------------- .../{other => util}/ClearCommand.java | 4 +- .../{other => util}/DeclutterCommand.java | 4 +- .../{other => util}/GamemodeCommand.java | 4 +- .../{other => util}/KillAllCommand.java | 4 +- .../{other => util}/NoClipCommand.java | 4 +- .../features/{other => util}/SlotCommand.java | 4 +- .../{other => util}/TeleportCommand.java | 4 +- .../features/{other => util}/TimeCommand.java | 4 +- .../features/{other => util}/TpsCommand.java | 4 +- .../items/ClearBauGuiItem.java | 4 +- .../items/DeclutterBauGuiItem.java | 6 +- .../items/GamemodeBauGuiItem.java | 4 +- .../items/KillAllBauGuiItem.java | 6 +- .../items/TeleportBauGuiItem.java | 4 +- 17 files changed, 32 insertions(+), 93 deletions(-) delete mode 100644 BauSystem_Main/src/de/steamwar/bausystem/features/other/items/WorldSpawnBauGuiItem.java rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/ClearCommand.java (96%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/DeclutterCommand.java (95%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/GamemodeCommand.java (95%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/KillAllCommand.java (97%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/NoClipCommand.java (98%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/SlotCommand.java (96%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/TeleportCommand.java (94%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/TimeCommand.java (97%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/TpsCommand.java (95%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/items/ClearBauGuiItem.java (94%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/items/DeclutterBauGuiItem.java (92%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/items/GamemodeBauGuiItem.java (96%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/items/KillAllBauGuiItem.java (93%) rename BauSystem_Main/src/de/steamwar/bausystem/features/{other => util}/items/TeleportBauGuiItem.java (95%) diff --git a/BauSystem_15/src/de/steamwar/bausystem/utils/NMSWrapper15.java b/BauSystem_15/src/de/steamwar/bausystem/utils/NMSWrapper15.java index 48c0d3a0..cd674b63 100644 --- a/BauSystem_15/src/de/steamwar/bausystem/utils/NMSWrapper15.java +++ b/BauSystem_15/src/de/steamwar/bausystem/utils/NMSWrapper15.java @@ -24,7 +24,7 @@ import de.steamwar.bausystem.entities.DetonatorEntity15; import de.steamwar.bausystem.entities.SimulatorEntity15; import de.steamwar.bausystem.entities.TraceEntity15; import de.steamwar.bausystem.features.detonator.AbstractDetonatorEntity; -import de.steamwar.bausystem.features.other.NoClipCommand; +import de.steamwar.bausystem.features.util.NoClipCommand; import de.steamwar.bausystem.features.simulator.AbstractSimulatorEntity; import de.steamwar.bausystem.features.tracer.AbstractTraceEntity; import de.steamwar.bausystem.features.warp.AbstractWarpEntity; diff --git a/BauSystem_18/src/de/steamwar/bausystem/utils/NMSWrapper18.java b/BauSystem_18/src/de/steamwar/bausystem/utils/NMSWrapper18.java index de2f6876..46b79f19 100644 --- a/BauSystem_18/src/de/steamwar/bausystem/utils/NMSWrapper18.java +++ b/BauSystem_18/src/de/steamwar/bausystem/utils/NMSWrapper18.java @@ -26,7 +26,7 @@ import de.steamwar.bausystem.entities.SimulatorEntity18; import de.steamwar.bausystem.entities.TraceEntity18; import de.steamwar.bausystem.entities.WarpEntity18; import de.steamwar.bausystem.features.detonator.AbstractDetonatorEntity; -import de.steamwar.bausystem.features.other.NoClipCommand; +import de.steamwar.bausystem.features.util.NoClipCommand; import de.steamwar.bausystem.features.simulator.AbstractSimulatorEntity; import de.steamwar.bausystem.features.tracer.AbstractTraceEntity; import de.steamwar.bausystem.features.warp.AbstractWarpEntity; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/WorldSpawnBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/WorldSpawnBauGuiItem.java deleted file mode 100644 index 2c9ea43e..00000000 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/WorldSpawnBauGuiItem.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * This file is a part of the SteamWar software. - * - * Copyright (C) 2021 SteamWar.de-Serverteam - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package de.steamwar.bausystem.features.other.items; - -import de.steamwar.bausystem.BauSystem; -import de.steamwar.bausystem.Permission; -import de.steamwar.bausystem.features.other.WorldSpawnCommand; -import de.steamwar.bausystem.linkage.LinkageType; -import de.steamwar.bausystem.linkage.Linked; -import de.steamwar.bausystem.linkage.LinkedInstance; -import de.steamwar.bausystem.linkage.specific.BauGuiItem; -import de.steamwar.inventory.SWItem; -import org.bukkit.Material; -import org.bukkit.entity.Player; -import org.bukkit.event.inventory.ClickType; -import org.bukkit.inventory.ItemStack; - -@Linked(LinkageType.BAU_GUI_ITEM) -public class WorldSpawnBauGuiItem extends BauGuiItem { - - @LinkedInstance - private WorldSpawnCommand worldSpawnCommand; - - public WorldSpawnBauGuiItem() { - super(33); - } - - @Override - public ItemStack getItem(Player player) { - return new SWItem(Material.ENDER_EYE, BauSystem.MESSAGE.parse("OTHER_ITEMS_WORLDSPAWN_NAME", player)).getItemStack(); - } - - @Override - public boolean click(ClickType click, Player p) { - p.closeInventory(); - worldSpawnCommand.genericCommand(p); - return false; - } - - @Override - public Permission permission() { - return Permission.MEMBER; - } -} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/ClearCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/ClearCommand.java similarity index 96% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/ClearCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/ClearCommand.java index 7e292237..24c1dd8e 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/ClearCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/ClearCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/DeclutterCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/DeclutterCommand.java similarity index 95% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/DeclutterCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/DeclutterCommand.java index 6f79b69c..a684bab9 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/DeclutterCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/DeclutterCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.linkage.LinkageType; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/GamemodeCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/GamemodeCommand.java similarity index 95% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/GamemodeCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/GamemodeCommand.java index f4d38198..2682d5f9 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/GamemodeCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/GamemodeCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -16,7 +16,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.linkage.LinkageType; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/KillAllCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/KillAllCommand.java similarity index 97% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/KillAllCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/KillAllCommand.java index 59153c28..736494be 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/KillAllCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/KillAllCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.SWUtils; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/NoClipCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/NoClipCommand.java similarity index 98% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/NoClipCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/NoClipCommand.java index d61df74e..f605f828 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/NoClipCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/NoClipCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import com.comphenix.tinyprotocol.Reflection; import com.comphenix.tinyprotocol.TinyProtocol; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/SlotCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/SlotCommand.java similarity index 96% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/SlotCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/SlotCommand.java index 0c50d8ff..c6a3af49 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/SlotCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/SlotCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.SWUtils; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TeleportCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TeleportCommand.java similarity index 94% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/TeleportCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/TeleportCommand.java index 40fd9aa0..047a94e2 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TeleportCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TeleportCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.linkage.LinkageType; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TimeCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TimeCommand.java similarity index 97% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/TimeCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/TimeCommand.java index 66e916b5..58436511 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TimeCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TimeCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TpsCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TpsCommand.java similarity index 95% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/TpsCommand.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/TpsCommand.java index a81ed03b..877c0da1 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/TpsCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/TpsCommand.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other; +package de.steamwar.bausystem.features.util; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.features.tpslimit.TPSWarpUtils; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/ClearBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/ClearBauGuiItem.java similarity index 94% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/items/ClearBauGuiItem.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/items/ClearBauGuiItem.java index 3c9a56b0..ec39cb33 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/ClearBauGuiItem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/ClearBauGuiItem.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other.items; +package de.steamwar.bausystem.features.util.items; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/DeclutterBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/DeclutterBauGuiItem.java similarity index 92% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/items/DeclutterBauGuiItem.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/items/DeclutterBauGuiItem.java index 09077542..70e7296d 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/DeclutterBauGuiItem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/DeclutterBauGuiItem.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,11 +17,11 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other.items; +package de.steamwar.bausystem.features.util.items; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; -import de.steamwar.bausystem.features.other.DeclutterCommand; +import de.steamwar.bausystem.features.util.DeclutterCommand; import de.steamwar.bausystem.linkage.LinkageType; import de.steamwar.bausystem.linkage.Linked; import de.steamwar.bausystem.linkage.LinkedInstance; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/GamemodeBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/GamemodeBauGuiItem.java similarity index 96% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/items/GamemodeBauGuiItem.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/items/GamemodeBauGuiItem.java index cc4a6c1d..fb8bf022 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/GamemodeBauGuiItem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/GamemodeBauGuiItem.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other.items; +package de.steamwar.bausystem.features.util.items; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/KillAllBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/KillAllBauGuiItem.java similarity index 93% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/items/KillAllBauGuiItem.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/items/KillAllBauGuiItem.java index 95b6567f..e31ea268 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/KillAllBauGuiItem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/KillAllBauGuiItem.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,11 +17,11 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other.items; +package de.steamwar.bausystem.features.util.items; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission; -import de.steamwar.bausystem.features.other.KillAllCommand; +import de.steamwar.bausystem.features.util.KillAllCommand; import de.steamwar.bausystem.linkage.LinkageType; import de.steamwar.bausystem.linkage.Linked; import de.steamwar.bausystem.linkage.LinkedInstance; diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/TeleportBauGuiItem.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/TeleportBauGuiItem.java similarity index 95% rename from BauSystem_Main/src/de/steamwar/bausystem/features/other/items/TeleportBauGuiItem.java rename to BauSystem_Main/src/de/steamwar/bausystem/features/util/items/TeleportBauGuiItem.java index e0df2221..a190b0d6 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/other/items/TeleportBauGuiItem.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/items/TeleportBauGuiItem.java @@ -1,7 +1,7 @@ /* * This file is a part of the SteamWar software. * - * Copyright (C) 2021 SteamWar.de-Serverteam + * Copyright (C) 2022 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package de.steamwar.bausystem.features.other.items; +package de.steamwar.bausystem.features.util.items; import de.steamwar.bausystem.BauSystem; import de.steamwar.bausystem.Permission;