diff --git a/pom.xml b/pom.xml
index e16b440..12e3870 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- net.mindoverflow.network.uhccore
+ wtf.beatrice.uhccore
UhcCore
0.0.136
diff --git a/src/main/java/net/mindoverflow/network/uhccore/UhcCore.java b/src/main/java/wtf/beatrice/uhccore/UhcCore.java
similarity index 92%
rename from src/main/java/net/mindoverflow/network/uhccore/UhcCore.java
rename to src/main/java/wtf/beatrice/uhccore/UhcCore.java
index 9f9ed83..51f1eb1 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/UhcCore.java
+++ b/src/main/java/wtf/beatrice/uhccore/UhcCore.java
@@ -1,11 +1,11 @@
-package net.mindoverflow.network.uhccore;
+package wtf.beatrice.uhccore;
-import net.mindoverflow.network.uhccore.commands.UhcCoreCommand;
-import net.mindoverflow.network.uhccore.completers.InfoCompleter;
-import net.mindoverflow.network.uhccore.listeners.*;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
-import net.mindoverflow.network.uhccore.utils.MessageUtils;
+import wtf.beatrice.uhccore.commands.UhcCoreCommand;
+import wtf.beatrice.uhccore.completers.InfoCompleter;
+import wtf.beatrice.uhccore.listeners.*;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.configuration.FileUtils;
+import wtf.beatrice.uhccore.utils.MessageUtils;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/UhcCoreCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/UhcCoreCommand.java
similarity index 91%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/UhcCoreCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/UhcCoreCommand.java
index 3de4e54..fecdb1c 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/UhcCoreCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/UhcCoreCommand.java
@@ -1,15 +1,15 @@
-package net.mindoverflow.network.uhccore.commands;
+package wtf.beatrice.uhccore.commands;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.commands.uhccommands.*;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.MessageUtils;
-import net.mindoverflow.network.uhccore.utils.configuration.LocalizedMessages;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.MessageUtils;
+import wtf.beatrice.uhccore.utils.configuration.LocalizedMessages;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.entity.Player;
+import wtf.beatrice.uhccore.commands.uhccommands.*;
import java.util.logging.Level;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/HelpCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/HelpCommand.java
similarity index 75%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/HelpCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/HelpCommand.java
index 354ba40..8b93d16 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/HelpCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/HelpCommand.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
import org.bukkit.command.CommandSender;
import org.bukkit.plugin.Plugin;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ListCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ListCommand.java
similarity index 96%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ListCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ListCommand.java
index 0215fe2..c970c61 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ListCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ListCommand.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
-import net.mindoverflow.network.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Cache;
import org.bukkit.command.CommandSender;
import java.util.ArrayList;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ReloadCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ReloadCommand.java
similarity index 75%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ReloadCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ReloadCommand.java
index 35a3cfe..398fc67 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/ReloadCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/ReloadCommand.java
@@ -1,7 +1,7 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.configuration.FileUtils;
import org.bukkit.command.CommandSender;
import java.util.logging.Level;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetFireworkCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetFireworkCommand.java
similarity index 81%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetFireworkCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetFireworkCommand.java
index 2191491..a5aa41a 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetFireworkCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetFireworkCommand.java
@@ -1,9 +1,9 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.configuration.ConfigEntries;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.configuration.ConfigEntries;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.configuration.FileUtils;
import org.bukkit.Location;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.YamlConfiguration;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetSpawnCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetSpawnCommand.java
similarity index 79%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetSpawnCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetSpawnCommand.java
index 526d54d..5003f42 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/SetSpawnCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/SetSpawnCommand.java
@@ -1,8 +1,8 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.configuration.ConfigEntries;
-import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.configuration.ConfigEntries;
+import wtf.beatrice.uhccore.utils.configuration.FileUtils;
import org.bukkit.Location;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.YamlConfiguration;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/StartUhcCommand.java b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/StartUhcCommand.java
similarity index 94%
rename from src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/StartUhcCommand.java
rename to src/main/java/wtf/beatrice/uhccore/commands/uhccommands/StartUhcCommand.java
index 5b6f7ca..90d124b 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/commands/uhccommands/StartUhcCommand.java
+++ b/src/main/java/wtf/beatrice/uhccore/commands/uhccommands/StartUhcCommand.java
@@ -1,9 +1,9 @@
-package net.mindoverflow.network.uhccore.commands.uhccommands;
+package wtf.beatrice.uhccore.commands.uhccommands;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.math.NumberUtils;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.math.NumberUtils;
import org.bukkit.*;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/completers/InfoCompleter.java b/src/main/java/wtf/beatrice/uhccore/completers/InfoCompleter.java
similarity index 96%
rename from src/main/java/net/mindoverflow/network/uhccore/completers/InfoCompleter.java
rename to src/main/java/wtf/beatrice/uhccore/completers/InfoCompleter.java
index d5b9a6a..3d3ed49 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/completers/InfoCompleter.java
+++ b/src/main/java/wtf/beatrice/uhccore/completers/InfoCompleter.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.completers;
+package wtf.beatrice.uhccore.completers;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerChatListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerChatListener.java
similarity index 91%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerChatListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerChatListener.java
index 9974103..b893b52 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerChatListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerChatListener.java
@@ -1,7 +1,7 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.Cache;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerDeathRespawnListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerDeathRespawnListener.java
similarity index 97%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerDeathRespawnListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerDeathRespawnListener.java
index 2d0e20f..f9c5040 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerDeathRespawnListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerDeathRespawnListener.java
@@ -1,9 +1,9 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.UhcUtils;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.UhcUtils;
import org.bukkit.*;
import org.bukkit.entity.Firework;
import org.bukkit.entity.Player;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerHitListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerHitListener.java
similarity index 93%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerHitListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerHitListener.java
index 4ce7139..056eaca 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerHitListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerHitListener.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Cache;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerInteractListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerInteractListener.java
similarity index 96%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerInteractListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerInteractListener.java
index 1a9d138..fcc2f98 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerInteractListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerInteractListener.java
@@ -1,8 +1,8 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.UhcUtils;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.UhcUtils;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerJoinListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerJoinListener.java
similarity index 77%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerJoinListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerJoinListener.java
index b71ca27..c1e25e3 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerJoinListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerJoinListener.java
@@ -1,8 +1,8 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.Debugger;
-import net.mindoverflow.network.uhccore.utils.UhcUtils;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.utils.UhcUtils;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerMoveListener.java b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerMoveListener.java
similarity index 77%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerMoveListener.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/PlayerMoveListener.java
index 543cc41..fc103da 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/PlayerMoveListener.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/PlayerMoveListener.java
@@ -1,7 +1,7 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.Cache;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerMoveEvent;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/listeners/TeamsSelectorGUI.java b/src/main/java/wtf/beatrice/uhccore/listeners/TeamsSelectorGUI.java
similarity index 91%
rename from src/main/java/net/mindoverflow/network/uhccore/listeners/TeamsSelectorGUI.java
rename to src/main/java/wtf/beatrice/uhccore/listeners/TeamsSelectorGUI.java
index 5583c39..9bcdbf1 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/listeners/TeamsSelectorGUI.java
+++ b/src/main/java/wtf/beatrice/uhccore/listeners/TeamsSelectorGUI.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.listeners;
+package wtf.beatrice.uhccore.listeners;
-import net.mindoverflow.network.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Cache;
import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.inventory.Inventory;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/Cache.java b/src/main/java/wtf/beatrice/uhccore/utils/Cache.java
similarity index 94%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/Cache.java
rename to src/main/java/wtf/beatrice/uhccore/utils/Cache.java
index 1ae6148..0fbe2e2 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/Cache.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/Cache.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
-import net.mindoverflow.network.uhccore.listeners.TeamsSelectorGUI;
+import wtf.beatrice.uhccore.listeners.TeamsSelectorGUI;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/Debugger.java b/src/main/java/wtf/beatrice/uhccore/utils/Debugger.java
similarity index 97%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/Debugger.java
rename to src/main/java/wtf/beatrice/uhccore/utils/Debugger.java
index a835758..0ba56f0 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/Debugger.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/Debugger.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
-import net.mindoverflow.network.uhccore.UhcCore;
+import wtf.beatrice.uhccore.UhcCore;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/MessageUtils.java b/src/main/java/wtf/beatrice/uhccore/utils/MessageUtils.java
similarity index 94%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/MessageUtils.java
rename to src/main/java/wtf/beatrice/uhccore/utils/MessageUtils.java
index 3aa3ff1..7c08ac5 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/MessageUtils.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/MessageUtils.java
@@ -1,9 +1,9 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
-import net.mindoverflow.network.uhccore.utils.configuration.LocalizedMessages;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.utils.configuration.FileUtils;
+import wtf.beatrice.uhccore.utils.configuration.LocalizedMessages;
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.YamlConfiguration;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/PermissionUtils.java b/src/main/java/wtf/beatrice/uhccore/utils/PermissionUtils.java
similarity index 89%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/PermissionUtils.java
rename to src/main/java/wtf/beatrice/uhccore/utils/PermissionUtils.java
index 654cafc..fc6d787 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/PermissionUtils.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/PermissionUtils.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
-import net.mindoverflow.network.uhccore.UhcCore;
+import wtf.beatrice.uhccore.UhcCore;
import org.bukkit.entity.Player;
import java.util.logging.Level;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/Permissions.java b/src/main/java/wtf/beatrice/uhccore/utils/Permissions.java
similarity index 80%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/Permissions.java
rename to src/main/java/wtf/beatrice/uhccore/utils/Permissions.java
index 6c04ace..4a16331 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/Permissions.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/Permissions.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
public enum Permissions
{
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/UhcUtils.java b/src/main/java/wtf/beatrice/uhccore/utils/UhcUtils.java
similarity index 96%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/UhcUtils.java
rename to src/main/java/wtf/beatrice/uhccore/utils/UhcUtils.java
index a65ff3b..ad16de4 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/UhcUtils.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/UhcUtils.java
@@ -1,6 +1,6 @@
-package net.mindoverflow.network.uhccore.utils;
+package wtf.beatrice.uhccore.utils;
-import net.mindoverflow.network.uhccore.UhcCore;
+import wtf.beatrice.uhccore.UhcCore;
import org.bukkit.Color;
import org.bukkit.FireworkEffect;
import org.bukkit.Location;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/ConfigEntries.java b/src/main/java/wtf/beatrice/uhccore/utils/configuration/ConfigEntries.java
similarity index 91%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/configuration/ConfigEntries.java
rename to src/main/java/wtf/beatrice/uhccore/utils/configuration/ConfigEntries.java
index 87d75a9..91476a4 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/ConfigEntries.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/configuration/ConfigEntries.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.utils.configuration;
+package wtf.beatrice.uhccore.utils.configuration;
public enum ConfigEntries
{
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/FileUtils.java b/src/main/java/wtf/beatrice/uhccore/utils/configuration/FileUtils.java
similarity index 97%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/configuration/FileUtils.java
rename to src/main/java/wtf/beatrice/uhccore/utils/configuration/FileUtils.java
index e3d2e82..e669269 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/FileUtils.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/configuration/FileUtils.java
@@ -1,9 +1,9 @@
-package net.mindoverflow.network.uhccore.utils.configuration;
+package wtf.beatrice.uhccore.utils.configuration;
-import net.mindoverflow.network.uhccore.UhcCore;
-import net.mindoverflow.network.uhccore.listeners.TeamsSelectorGUI;
-import net.mindoverflow.network.uhccore.utils.Cache;
-import net.mindoverflow.network.uhccore.utils.Debugger;
+import wtf.beatrice.uhccore.UhcCore;
+import wtf.beatrice.uhccore.listeners.TeamsSelectorGUI;
+import wtf.beatrice.uhccore.utils.Cache;
+import wtf.beatrice.uhccore.utils.Debugger;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.World;
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/LocalizedMessages.java b/src/main/java/wtf/beatrice/uhccore/utils/configuration/LocalizedMessages.java
similarity index 83%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/configuration/LocalizedMessages.java
rename to src/main/java/wtf/beatrice/uhccore/utils/configuration/LocalizedMessages.java
index 709d984..83e1ff1 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/configuration/LocalizedMessages.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/configuration/LocalizedMessages.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.utils.configuration;
+package wtf.beatrice.uhccore.utils.configuration;
public enum LocalizedMessages {
diff --git a/src/main/java/net/mindoverflow/network/uhccore/utils/math/NumberUtils.java b/src/main/java/wtf/beatrice/uhccore/utils/math/NumberUtils.java
similarity index 86%
rename from src/main/java/net/mindoverflow/network/uhccore/utils/math/NumberUtils.java
rename to src/main/java/wtf/beatrice/uhccore/utils/math/NumberUtils.java
index cdeb9d0..d18097a 100644
--- a/src/main/java/net/mindoverflow/network/uhccore/utils/math/NumberUtils.java
+++ b/src/main/java/wtf/beatrice/uhccore/utils/math/NumberUtils.java
@@ -1,4 +1,4 @@
-package net.mindoverflow.network.uhccore.utils.math;
+package wtf.beatrice.uhccore.utils.math;
import java.util.Random;
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml
index 026902b..c70b611 100644
--- a/src/main/resources/plugin.yml
+++ b/src/main/resources/plugin.yml
@@ -2,7 +2,7 @@ name: UHC-Core
version: 0.0.136
author: mind_overflow
api-version: '1.15'
-main: net.mindoverflow.network.uhccore.UhcCore
+main: wtf.beatrice.uhccore.UhcCore
commands:
uhc:
description: UHC-Core base command.