From 6142aff989d5b593acaef52e72c37a3df2adc271 Mon Sep 17 00:00:00 2001 From: Esoteric Slime <90862990+EsotericSlime@users.noreply.github.com> Date: Wed, 11 Sep 2024 21:11:03 +0100 Subject: [PATCH] Rename project author This follows the renaming of the organisation from "EsotericDevelopment" to "EsotericOrganisation". --- build.gradle.kts | 2 +- .../TemplatePaperPlugin.java | 34 +++++++++---------- .../commands/GiveCustomItemCommand.java | 8 ++--- .../PlaceCustomMultiblockCommand.java | 8 ++--- .../commands/SetLanguageCommand.java | 8 ++--- .../SpawnCustomMultientityCommand.java | 8 ++--- .../custom_item/AbstractCustomItem.java | 4 +-- .../custom_item/CustomItem.java | 2 +- .../custom_item/CustomItemManager.java | 8 ++--- .../AbstractCustomMultiblock.java | 6 ++-- .../custom_multiblock/CustomMultiblock.java | 2 +- .../CustomMultiblockManager.java | 8 ++--- .../StoredCustomMultiblock.java | 4 +-- .../StoredCustomMultiblocks.java | 2 +- .../AbstractCustomMultientity.java | 4 +-- .../custom_multientity/CustomMultientity.java | 2 +- .../CustomMultientityManager.java | 8 ++--- .../data/player/PlayerDataManager.java | 4 +-- .../data/player/PlayerProfile.java | 2 +- .../file/FileManager.java | 4 +-- .../template_paper_plugin/file/FileUtil.java | 2 +- .../http_server/HttpServerManager.java | 10 +++--- .../event/listeners/PlayerJoinListener.java | 8 ++--- .../language/LanguageManager.java | 6 ++-- .../language/Message.java | 8 ++--- .../resource_pack/ResourcePackManager.java | 6 ++-- .../util/types/BlockLocation.java | 2 +- 27 files changed, 85 insertions(+), 85 deletions(-) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/TemplatePaperPlugin.java (69%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/commands/GiveCustomItemCommand.java (84%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java (85%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/commands/SetLanguageCommand.java (84%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/commands/SpawnCustomMultientityCommand.java (85%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_item/AbstractCustomItem.java (92%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_item/CustomItem.java (61%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_item/CustomItemManager.java (66%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java (86%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multiblock/CustomMultiblock.java (60%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java (91%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java (82%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java (85%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java (90%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multientity/CustomMultientity.java (60%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/custom_multientity/CustomMultientityManager.java (71%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/data/player/PlayerDataManager.java (95%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/data/player/PlayerProfile.java (85%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/file/FileManager.java (86%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/file/FileUtil.java (98%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/http_server/HttpServerManager.java (87%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java (75%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/language/LanguageManager.java (98%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/language/Message.java (71%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/resource_pack/ResourcePackManager.java (91%) rename src/main/java/dev/{esoteric_development => esoteric_organisation}/template_paper_plugin/util/types/BlockLocation.java (91%) diff --git a/build.gradle.kts b/build.gradle.kts index 4b43f3eb..02c3dae8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,7 +63,7 @@ fun replaceStringInDirectoryFiles(directory: File, stringToReplace: String, repl description = "Test plugin for paperweight-userdev" -val mainProjectAuthorName = "Esoteric Development" +val mainProjectAuthorName = "Esoteric Organisation" val snakecaseMainProjectAuthorName = snakecase(mainProjectAuthorName) val projectAuthors = listOfNotNull(mainProjectAuthorName) diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/TemplatePaperPlugin.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/TemplatePaperPlugin.java similarity index 69% rename from src/main/java/dev/esoteric_development/template_paper_plugin/TemplatePaperPlugin.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/TemplatePaperPlugin.java index aeba6d22..6d7814b9 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/TemplatePaperPlugin.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/TemplatePaperPlugin.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin; +package dev.esoteric_organisation.template_paper_plugin; import org.bukkit.NamespacedKey; import org.bukkit.plugin.java.JavaPlugin; @@ -7,22 +7,22 @@ import dev.jorel.commandapi.CommandAPI; import dev.jorel.commandapi.CommandAPIBukkitConfig; -import dev.esoteric_development.template_paper_plugin.commands.GiveCustomItemCommand; -import dev.esoteric_development.template_paper_plugin.commands.PlaceCustomMultiblockCommand; -import dev.esoteric_development.template_paper_plugin.commands.SetLanguageCommand; -import dev.esoteric_development.template_paper_plugin.commands.SpawnCustomMultientityCommand; -import dev.esoteric_development.template_paper_plugin.custom_item.CustomItem; -import dev.esoteric_development.template_paper_plugin.custom_item.CustomItemManager; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.CustomMultiblock; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.CustomMultiblockManager; -import dev.esoteric_development.template_paper_plugin.custom_multientity.CustomMultientity; -import dev.esoteric_development.template_paper_plugin.custom_multientity.CustomMultientityManager; -import dev.esoteric_development.template_paper_plugin.data.player.PlayerDataManager; -import dev.esoteric_development.template_paper_plugin.file.FileManager; -import dev.esoteric_development.template_paper_plugin.http_server.HttpServerManager; -import dev.esoteric_development.template_paper_plugin.language.LanguageManager; -import dev.esoteric_development.template_paper_plugin.language.Message; -import dev.esoteric_development.template_paper_plugin.resource_pack.ResourcePackManager; +import dev.esoteric_organisation.template_paper_plugin.commands.GiveCustomItemCommand; +import dev.esoteric_organisation.template_paper_plugin.commands.PlaceCustomMultiblockCommand; +import dev.esoteric_organisation.template_paper_plugin.commands.SetLanguageCommand; +import dev.esoteric_organisation.template_paper_plugin.commands.SpawnCustomMultientityCommand; +import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem; +import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItemManager; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblockManager; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientityManager; +import dev.esoteric_organisation.template_paper_plugin.data.player.PlayerDataManager; +import dev.esoteric_organisation.template_paper_plugin.file.FileManager; +import dev.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager; +import dev.esoteric_organisation.template_paper_plugin.language.LanguageManager; +import dev.esoteric_organisation.template_paper_plugin.language.Message; +import dev.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager; @DefaultQualifier(NonNull.class) public final class TemplatePaperPlugin extends JavaPlugin { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/GiveCustomItemCommand.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/GiveCustomItemCommand.java similarity index 84% rename from src/main/java/dev/esoteric_development/template_paper_plugin/commands/GiveCustomItemCommand.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/GiveCustomItemCommand.java index 493fa2b5..1edeb085 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/GiveCustomItemCommand.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/GiveCustomItemCommand.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.commands; +package dev.esoteric_organisation.template_paper_plugin.commands; import java.util.stream.Stream; @@ -8,9 +8,9 @@ import dev.jorel.commandapi.arguments.ArgumentSuggestions; import dev.jorel.commandapi.arguments.CustomArgument; import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_item.CustomItem; -import dev.esoteric_development.template_paper_plugin.language.Message; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem; +import dev.esoteric_organisation.template_paper_plugin.language.Message; import dev.jorel.commandapi.arguments.StringArgument; public class GiveCustomItemCommand extends CommandAPICommand { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java similarity index 85% rename from src/main/java/dev/esoteric_development/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java index a583f451..99bf05db 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/PlaceCustomMultiblockCommand.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.commands; +package dev.esoteric_organisation.template_paper_plugin.commands; import java.util.stream.Stream; @@ -8,9 +8,9 @@ import dev.jorel.commandapi.arguments.ArgumentSuggestions; import dev.jorel.commandapi.arguments.CustomArgument; import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.CustomMultiblock; -import dev.esoteric_development.template_paper_plugin.language.Message; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock; +import dev.esoteric_organisation.template_paper_plugin.language.Message; import dev.jorel.commandapi.arguments.StringArgument; public class PlaceCustomMultiblockCommand extends CommandAPICommand { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/SetLanguageCommand.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SetLanguageCommand.java similarity index 84% rename from src/main/java/dev/esoteric_development/template_paper_plugin/commands/SetLanguageCommand.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SetLanguageCommand.java index e74fa460..6d9f158a 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/SetLanguageCommand.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SetLanguageCommand.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.commands; +package dev.esoteric_organisation.template_paper_plugin.commands; import dev.jorel.commandapi.CommandAPICommand; import dev.jorel.commandapi.arguments.Argument; @@ -9,9 +9,9 @@ import java.util.Set; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.language.LanguageManager; -import dev.esoteric_development.template_paper_plugin.language.Message; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.language.LanguageManager; +import dev.esoteric_organisation.template_paper_plugin.language.Message; import net.kyori.adventure.text.Component; public class SetLanguageCommand extends CommandAPICommand { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/SpawnCustomMultientityCommand.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SpawnCustomMultientityCommand.java similarity index 85% rename from src/main/java/dev/esoteric_development/template_paper_plugin/commands/SpawnCustomMultientityCommand.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SpawnCustomMultientityCommand.java index 99eadcd5..7f8c3ebd 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/commands/SpawnCustomMultientityCommand.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/commands/SpawnCustomMultientityCommand.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.commands; +package dev.esoteric_organisation.template_paper_plugin.commands; import java.util.stream.Stream; @@ -8,9 +8,9 @@ import dev.jorel.commandapi.arguments.ArgumentSuggestions; import dev.jorel.commandapi.arguments.CustomArgument; import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_multientity.CustomMultientity; -import dev.esoteric_development.template_paper_plugin.language.Message; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity; +import dev.esoteric_organisation.template_paper_plugin.language.Message; import dev.jorel.commandapi.arguments.StringArgument; public class SpawnCustomMultientityCommand extends CommandAPICommand { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/AbstractCustomItem.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/AbstractCustomItem.java similarity index 92% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/AbstractCustomItem.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/AbstractCustomItem.java index 470612d6..a46a7e88 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/AbstractCustomItem.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/AbstractCustomItem.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_item; +package dev.esoteric_organisation.template_paper_plugin.custom_item; import org.bukkit.Bukkit; import org.bukkit.Material; @@ -7,7 +7,7 @@ import org.bukkit.inventory.ItemStack; import org.bukkit.persistence.PersistentDataType; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; public abstract class AbstractCustomItem implements Listener { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItem.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItem.java similarity index 61% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItem.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItem.java index bf1e12e2..5f8300bd 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItem.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItem.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_item; +package dev.esoteric_organisation.template_paper_plugin.custom_item; public enum CustomItem { ; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItemManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItemManager.java similarity index 66% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItemManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItemManager.java index b61fb2a1..4dfa05b7 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_item/CustomItemManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_item/CustomItemManager.java @@ -1,13 +1,13 @@ -package dev.esoteric_development.template_paper_plugin.custom_item; +package dev.esoteric_organisation.template_paper_plugin.custom_item; import java.util.HashMap; import java.util.Map; import org.bukkit.entity.Player; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_item.AbstractCustomItem; -import dev.esoteric_development.template_paper_plugin.custom_item.CustomItem; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_item.AbstractCustomItem; +import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem; public class CustomItemManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java similarity index 86% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java index 58eb5b36..67f44858 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/AbstractCustomMultiblock.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multiblock; +package dev.esoteric_organisation.template_paper_plugin.custom_multiblock; import java.util.ArrayList; import java.util.List; @@ -8,8 +8,8 @@ import org.bukkit.block.Block; import org.bukkit.event.Listener; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.util.types.BlockLocation; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.util.types.BlockLocation; public abstract class AbstractCustomMultiblock implements Listener { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblock.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblock.java similarity index 60% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblock.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblock.java index 6c8c6ac2..49dcee30 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblock.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblock.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multiblock; +package dev.esoteric_organisation.template_paper_plugin.custom_multiblock; public enum CustomMultiblock { ; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java similarity index 91% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java index f5b7fc0a..2994d85c 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/CustomMultiblockManager.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multiblock; +package dev.esoteric_organisation.template_paper_plugin.custom_multiblock; import java.io.File; import java.io.FileReader; @@ -16,9 +16,9 @@ import com.google.gson.Gson; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.AbstractCustomMultiblock; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.CustomMultiblock; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.AbstractCustomMultiblock; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock; public class CustomMultiblockManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java similarity index 82% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java index c0644099..36920c85 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblock.java @@ -1,9 +1,9 @@ -package dev.esoteric_development.template_paper_plugin.custom_multiblock; +package dev.esoteric_organisation.template_paper_plugin.custom_multiblock; import java.util.List; import java.util.Map.Entry; -import dev.esoteric_development.template_paper_plugin.util.types.BlockLocation; +import dev.esoteric_organisation.template_paper_plugin.util.types.BlockLocation; public class StoredCustomMultiblock { private final List> blockLocations; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java similarity index 85% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java index 9b235df9..b8b7eb74 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multiblock/StoredCustomMultiblocks.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multiblock; +package dev.esoteric_organisation.template_paper_plugin.custom_multiblock; import java.util.ArrayList; import java.util.List; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java similarity index 90% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java index a27edc8f..5ed252a1 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/AbstractCustomMultientity.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multientity; +package dev.esoteric_organisation.template_paper_plugin.custom_multientity; import java.util.List; @@ -8,7 +8,7 @@ import org.bukkit.event.Listener; import org.bukkit.persistence.PersistentDataType; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; public abstract class AbstractCustomMultientity implements Listener { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientity.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientity.java similarity index 60% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientity.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientity.java index dbbccf84..0cb447e4 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientity.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientity.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multientity; +package dev.esoteric_organisation.template_paper_plugin.custom_multientity; public enum CustomMultientity { ; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientityManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientityManager.java similarity index 71% rename from src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientityManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientityManager.java index f42bbca0..33d1cf9a 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/custom_multientity/CustomMultientityManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/custom_multientity/CustomMultientityManager.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.custom_multientity; +package dev.esoteric_organisation.template_paper_plugin.custom_multientity; import java.util.HashMap; import java.util.List; @@ -7,9 +7,9 @@ import org.bukkit.Location; import org.bukkit.entity.Entity; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.custom_multientity.AbstractCustomMultientity; -import dev.esoteric_development.template_paper_plugin.custom_multientity.CustomMultientity; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.AbstractCustomMultientity; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity; public class CustomMultientityManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerDataManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerDataManager.java similarity index 95% rename from src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerDataManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerDataManager.java index 09b3c3ce..d7c806e9 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerDataManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerDataManager.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.data.player; +package dev.esoteric_organisation.template_paper_plugin.data.player; import java.io.File; import java.io.FileReader; @@ -13,7 +13,7 @@ import com.google.gson.Gson; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; public class PlayerDataManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerProfile.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerProfile.java similarity index 85% rename from src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerProfile.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerProfile.java index 414bab81..4b690d51 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/data/player/PlayerProfile.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/data/player/PlayerProfile.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.data.player; +package dev.esoteric_organisation.template_paper_plugin.data.player; import java.util.UUID; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/file/FileManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileManager.java similarity index 86% rename from src/main/java/dev/esoteric_development/template_paper_plugin/file/FileManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileManager.java index e2dfc713..f0b71207 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/file/FileManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileManager.java @@ -1,9 +1,9 @@ -package dev.esoteric_development.template_paper_plugin.file; +package dev.esoteric_organisation.template_paper_plugin.file; import java.io.File; import java.io.IOException; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; public class FileManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/file/FileUtil.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileUtil.java similarity index 98% rename from src/main/java/dev/esoteric_development/template_paper_plugin/file/FileUtil.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileUtil.java index 4871cfa8..d69d1e80 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/file/FileUtil.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/file/FileUtil.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.file; +package dev.esoteric_organisation.template_paper_plugin.file; import java.util.ArrayList; import java.util.Collections; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/http_server/HttpServerManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/HttpServerManager.java similarity index 87% rename from src/main/java/dev/esoteric_development/template_paper_plugin/http_server/HttpServerManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/HttpServerManager.java index f0919495..aac61763 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/http_server/HttpServerManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/HttpServerManager.java @@ -1,11 +1,11 @@ -package dev.esoteric_development.template_paper_plugin.http_server; +package dev.esoteric_organisation.template_paper_plugin.http_server; import com.sun.net.httpserver.HttpServer; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.file.FileUtil; -import dev.esoteric_development.template_paper_plugin.http_server.event.listeners.PlayerJoinListener; -import dev.esoteric_development.template_paper_plugin.resource_pack.ResourcePackManager; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.file.FileUtil; +import dev.esoteric_organisation.template_paper_plugin.http_server.event.listeners.PlayerJoinListener; +import dev.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager; import com.sun.net.httpserver.HttpHandler; import com.sun.net.httpserver.HttpExchange; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java similarity index 75% rename from src/main/java/dev/esoteric_development/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java index ee27802f..e92b6a8e 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/http_server/event/listeners/PlayerJoinListener.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.http_server.event.listeners; +package dev.esoteric_organisation.template_paper_plugin.http_server.event.listeners; import java.net.URI; @@ -7,9 +7,9 @@ import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerJoinEvent; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.file.FileUtil; -import dev.esoteric_development.template_paper_plugin.http_server.HttpServerManager; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.file.FileUtil; +import dev.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager; import net.kyori.adventure.resource.ResourcePackInfo; import net.kyori.adventure.resource.ResourcePackRequest; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/language/LanguageManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/language/LanguageManager.java similarity index 98% rename from src/main/java/dev/esoteric_development/template_paper_plugin/language/LanguageManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/language/LanguageManager.java index f9877980..8733f21c 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/language/LanguageManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/language/LanguageManager.java @@ -1,7 +1,7 @@ -package dev.esoteric_development.template_paper_plugin.language; +package dev.esoteric_organisation.template_paper_plugin.language; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.data.player.PlayerProfile; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.data.player.PlayerProfile; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.TextReplacementConfig; import net.kyori.adventure.text.minimessage.MiniMessage; diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/language/Message.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/language/Message.java similarity index 71% rename from src/main/java/dev/esoteric_development/template_paper_plugin/language/Message.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/language/Message.java index 0a3e4bf6..6d845d7e 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/language/Message.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/language/Message.java @@ -1,10 +1,10 @@ -package dev.esoteric_development.template_paper_plugin.language; +package dev.esoteric_organisation.template_paper_plugin.language; import java.util.function.BooleanSupplier; -import dev.esoteric_development.template_paper_plugin.custom_item.CustomItem; -import dev.esoteric_development.template_paper_plugin.custom_multiblock.CustomMultiblock; -import dev.esoteric_development.template_paper_plugin.custom_multientity.CustomMultientity; +import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem; +import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock; +import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity; public enum Message { SET_LANGUAGE_SUCCESSFULLY(() -> false), diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/resource_pack/ResourcePackManager.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/resource_pack/ResourcePackManager.java similarity index 91% rename from src/main/java/dev/esoteric_development/template_paper_plugin/resource_pack/ResourcePackManager.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/resource_pack/ResourcePackManager.java index ae862efa..9c94aef4 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/resource_pack/ResourcePackManager.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/resource_pack/ResourcePackManager.java @@ -1,12 +1,12 @@ -package dev.esoteric_development.template_paper_plugin.resource_pack; +package dev.esoteric_organisation.template_paper_plugin.resource_pack; import java.io.File; import java.util.List; import org.apache.commons.io.FileUtils; -import dev.esoteric_development.template_paper_plugin.TemplatePaperPlugin; -import dev.esoteric_development.template_paper_plugin.file.FileUtil; +import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin; +import dev.esoteric_organisation.template_paper_plugin.file.FileUtil; public class ResourcePackManager { diff --git a/src/main/java/dev/esoteric_development/template_paper_plugin/util/types/BlockLocation.java b/src/main/java/dev/esoteric_organisation/template_paper_plugin/util/types/BlockLocation.java similarity index 91% rename from src/main/java/dev/esoteric_development/template_paper_plugin/util/types/BlockLocation.java rename to src/main/java/dev/esoteric_organisation/template_paper_plugin/util/types/BlockLocation.java index 23a132eb..2a752f0e 100644 --- a/src/main/java/dev/esoteric_development/template_paper_plugin/util/types/BlockLocation.java +++ b/src/main/java/dev/esoteric_organisation/template_paper_plugin/util/types/BlockLocation.java @@ -1,4 +1,4 @@ -package dev.esoteric_development.template_paper_plugin.util.types; +package dev.esoteric_organisation.template_paper_plugin.util.types; import org.bukkit.Location; import org.bukkit.block.Block;