Compare commits

..

3 Commits

Author SHA1 Message Date
96f8ef153f Rename main package 2022-05-31 20:09:36 +02:00
ff8f52720d Disable duplicate repo 2022-05-31 20:04:52 +02:00
779ef61b4f Delete useless JetBrains files 2022-05-31 20:04:26 +02:00
34 changed files with 114 additions and 176 deletions

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" scope="PROVIDED">
<library>
<CLASSES>
<root url="jar://D:/Coding/# Server per Test Plugins #/spigot-1.15.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://D:/Coding/# Server per Test Plugins #/spigot-1.15.2.jar!/" />
</SOURCES>
</library>
</orderEntry>
<orderEntry type="library" scope="PROVIDED" name="Maven: org.spigotmc:spigot-api:1.16.1-R0.1-SNAPSHOT" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: commons-lang:commons-lang:2.6" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.guava:guava:21.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.code.gson:gson:2.8.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: net.md-5:bungeecord-chat:1.16-R0.1" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.yaml:snakeyaml:1.26" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.bukkit:bukkit:1.15.2-R0.1-SNAPSHOT" level="project" />
</component>
</module>

@ -1,22 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_9">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: commons-lang:commons-lang:2.6" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.guava:guava:21.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.code.gson:gson:2.8.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: net.md-5:bungeecord-chat:1.15-SNAPSHOT" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.yaml:snakeyaml:1.25" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.bukkit:bukkit:1.15.2-R0.1-SNAPSHOT" level="project" />
</component>
</module>

@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file #maven.buildNumber.plugin properties file
#Thu Jun 25 22:07:48 CEST 2020 #Tue May 31 20:08:48 CEST 2022
buildNumber=184 buildNumber=186

@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.mindoverflow.hubthat</groupId> <groupId>wtf.beatrice.hubthat</groupId>
<artifactId>HubThat</artifactId> <artifactId>HubThat</artifactId>
<version>10.1</version> <version>10.1</version>
<scm> <scm>
@ -84,11 +84,13 @@
<!--This adds the Bukkit API artifact to the build --> <!--This adds the Bukkit API artifact to the build -->
<!-- Do not include this in the pom.xml file if the Spigot API is already added --> <!-- Do not include this in the pom.xml file if the Spigot API is already added -->
<!--
<dependency> <dependency>
<groupId>org.bukkit</groupId> <groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId> <artifactId>bukkit</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version> <version>1.15.2-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
-->
</dependencies> </dependencies>
</project> </project>

@ -1,19 +1,19 @@
package net.mindoverflow.hubthat; package wtf.beatrice.hubthat;
import net.mindoverflow.hubthat.commands.*; import wtf.beatrice.hubthat.commands.*;
import net.mindoverflow.hubthat.completers.InfoCompleter; import wtf.beatrice.hubthat.completers.InfoCompleter;
import net.mindoverflow.hubthat.completers.SpawnCompleter; import wtf.beatrice.hubthat.completers.SpawnCompleter;
import net.mindoverflow.hubthat.listeners.PlayerChatListener; import wtf.beatrice.hubthat.listeners.PlayerChatListener;
import net.mindoverflow.hubthat.listeners.PlayerJoinListener; import wtf.beatrice.hubthat.listeners.PlayerJoinListener;
import net.mindoverflow.hubthat.listeners.PlayerMoveListener; import wtf.beatrice.hubthat.listeners.PlayerMoveListener;
import net.mindoverflow.hubthat.listeners.PlayerRespawnListener; import wtf.beatrice.hubthat.listeners.PlayerRespawnListener;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.Debugger; import wtf.beatrice.hubthat.utils.Debugger;
import net.mindoverflow.hubthat.utils.TeleportUtils; import wtf.beatrice.hubthat.utils.TeleportUtils;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import net.mindoverflow.hubthat.utils.files.OldConfigConversion; import wtf.beatrice.hubthat.utils.files.OldConfigConversion;
import net.mindoverflow.hubthat.utils.metrics.Metrics; import wtf.beatrice.hubthat.utils.metrics.Metrics;
import net.mindoverflow.hubthat.utils.metrics.UpdateChecker; import wtf.beatrice.hubthat.utils.metrics.UpdateChecker;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.plugin.java.JavaPlugin;

@ -1,8 +1,8 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*; import wtf.beatrice.hubthat.utils.*;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;

@ -1,11 +1,11 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.commands.hubthatcommands.HelpCommand; import wtf.beatrice.hubthat.commands.hubthatcommands.HelpCommand;
import net.mindoverflow.hubthat.commands.hubthatcommands.ReloadCommand; import wtf.beatrice.hubthat.commands.hubthatcommands.ReloadCommand;
import net.mindoverflow.hubthat.utils.Debugger; import wtf.beatrice.hubthat.utils.Debugger;
import net.mindoverflow.hubthat.utils.MessageUtils; import wtf.beatrice.hubthat.utils.MessageUtils;
import net.mindoverflow.hubthat.utils.PluginCache; import wtf.beatrice.hubthat.utils.PluginCache;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

@ -1,7 +1,7 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.utils.*; import wtf.beatrice.hubthat.utils.*;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;

@ -1,8 +1,8 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*; import wtf.beatrice.hubthat.utils.*;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.World; import org.bukkit.World;
import org.bukkit.command.Command; import org.bukkit.command.Command;

@ -1,8 +1,8 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*; import wtf.beatrice.hubthat.utils.*;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import org.bukkit.World; import org.bukkit.World;
import org.bukkit.WorldCreator; import org.bukkit.WorldCreator;

@ -1,13 +1,12 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*;
import org.bukkit.Difficulty; import org.bukkit.Difficulty;
import org.bukkit.World; import org.bukkit.World;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player; import wtf.beatrice.hubthat.utils.*;
import java.util.logging.Level; import java.util.logging.Level;

@ -1,7 +1,6 @@
package net.mindoverflow.hubthat.commands; package wtf.beatrice.hubthat.commands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.World; import org.bukkit.World;
import org.bukkit.command.Command; import org.bukkit.command.Command;
@ -9,11 +8,12 @@ import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.command.ConsoleCommandSender; import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import wtf.beatrice.hubthat.utils.*;
import java.util.logging.Level; import java.util.logging.Level;
import static net.mindoverflow.hubthat.utils.TeleportUtils.fixInvisibilityAfter; import static wtf.beatrice.hubthat.utils.TeleportUtils.fixInvisibilityAfter;
import static net.mindoverflow.hubthat.utils.TeleportUtils.fixInvisibilityBefore; import static wtf.beatrice.hubthat.utils.TeleportUtils.fixInvisibilityBefore;
public class WorldTpCommand implements CommandExecutor public class WorldTpCommand implements CommandExecutor
{ {

@ -1,9 +1,9 @@
package net.mindoverflow.hubthat.commands.hubthatcommands; package wtf.beatrice.hubthat.commands.hubthatcommands;
import net.mindoverflow.hubthat.utils.LocalizedMessages; import wtf.beatrice.hubthat.utils.LocalizedMessages;
import net.mindoverflow.hubthat.utils.MessageUtils; import wtf.beatrice.hubthat.utils.MessageUtils;
import net.mindoverflow.hubthat.utils.PermissionUtils; import wtf.beatrice.hubthat.utils.PermissionUtils;
import net.mindoverflow.hubthat.utils.Permissions; import wtf.beatrice.hubthat.utils.Permissions;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.plugin.Plugin; import org.bukkit.plugin.Plugin;

@ -1,8 +1,8 @@
package net.mindoverflow.hubthat.commands.hubthatcommands; package wtf.beatrice.hubthat.commands.hubthatcommands;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*; import wtf.beatrice.hubthat.utils.*;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import java.util.logging.Level; import java.util.logging.Level;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.completers; package wtf.beatrice.hubthat.completers;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.completers; package wtf.beatrice.hubthat.completers;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

@ -1,9 +1,9 @@
package net.mindoverflow.hubthat.listeners; package wtf.beatrice.hubthat.listeners;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.Debugger; import wtf.beatrice.hubthat.utils.Debugger;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler; import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener; import org.bukkit.event.Listener;

@ -1,12 +1,12 @@
package net.mindoverflow.hubthat.listeners; package wtf.beatrice.hubthat.listeners;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.commands.HubCommand; import wtf.beatrice.hubthat.commands.HubCommand;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.Debugger; import wtf.beatrice.hubthat.utils.Debugger;
import net.mindoverflow.hubthat.utils.MessageUtils; import wtf.beatrice.hubthat.utils.MessageUtils;
import net.mindoverflow.hubthat.utils.PluginCache; import wtf.beatrice.hubthat.utils.PluginCache;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.GameMode; import org.bukkit.GameMode;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;

@ -1,10 +1,10 @@
package net.mindoverflow.hubthat.listeners; package wtf.beatrice.hubthat.listeners;
import net.mindoverflow.hubthat.utils.PluginCache; import wtf.beatrice.hubthat.utils.PluginCache;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.LocalizedMessages; import wtf.beatrice.hubthat.utils.LocalizedMessages;
import net.mindoverflow.hubthat.utils.MessageUtils; import wtf.beatrice.hubthat.utils.MessageUtils;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.event.EventHandler; import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener; import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerMoveEvent; import org.bukkit.event.player.PlayerMoveEvent;

@ -1,10 +1,10 @@
package net.mindoverflow.hubthat.listeners; package wtf.beatrice.hubthat.listeners;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.commands.HubCommand; import wtf.beatrice.hubthat.commands.HubCommand;
import net.mindoverflow.hubthat.commands.SpawnCommand; import wtf.beatrice.hubthat.commands.SpawnCommand;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler; import org.bukkit.event.EventHandler;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
public enum ConfigEntries public enum ConfigEntries
{ {

@ -1,6 +1,6 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
public enum LocalizedMessages public enum LocalizedMessages
{ {

@ -1,7 +1,7 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.ChatColor; import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
public enum Permissions public enum Permissions
{ {

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ItemStack;

@ -1,7 +1,7 @@
package net.mindoverflow.hubthat.utils; package wtf.beatrice.hubthat.utils;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.files.FileUtils; import wtf.beatrice.hubthat.utils.files.FileUtils;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.World; import org.bukkit.World;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

@ -1,10 +1,10 @@
package net.mindoverflow.hubthat.utils.files; package wtf.beatrice.hubthat.utils.files;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.PluginCache; import wtf.beatrice.hubthat.utils.PluginCache;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.Debugger; import wtf.beatrice.hubthat.utils.Debugger;
import net.mindoverflow.hubthat.utils.metrics.UpdateChecker; import wtf.beatrice.hubthat.utils.metrics.UpdateChecker;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;
import java.io.*; import java.io.*;

@ -1,8 +1,8 @@
package net.mindoverflow.hubthat.utils.files; package wtf.beatrice.hubthat.utils.files;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.ConfigEntries; import wtf.beatrice.hubthat.utils.ConfigEntries;
import net.mindoverflow.hubthat.utils.LocalizedMessages; import wtf.beatrice.hubthat.utils.LocalizedMessages;
import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.configuration.file.YamlConfiguration;
import java.io.File; import java.io.File;

@ -1,4 +1,4 @@
package net.mindoverflow.hubthat.utils.metrics; package wtf.beatrice.hubthat.utils.metrics;
import com.google.gson.JsonArray; import com.google.gson.JsonArray;
import com.google.gson.JsonObject; import com.google.gson.JsonObject;

@ -1,14 +1,14 @@
package net.mindoverflow.hubthat.utils.metrics; package wtf.beatrice.hubthat.utils.metrics;
import com.google.gson.JsonArray; import com.google.gson.JsonArray;
import com.google.gson.JsonElement; import com.google.gson.JsonElement;
import com.google.gson.JsonObject; import com.google.gson.JsonObject;
import com.google.gson.JsonParser; import com.google.gson.JsonParser;
import net.mindoverflow.hubthat.HubThat; import wtf.beatrice.hubthat.HubThat;
import net.mindoverflow.hubthat.utils.*;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitTask; import org.bukkit.scheduler.BukkitTask;
import wtf.beatrice.hubthat.utils.*;
import javax.net.ssl.HttpsURLConnection; import javax.net.ssl.HttpsURLConnection;
import java.io.IOException; import java.io.IOException;

@ -1,7 +1,7 @@
name: HubThat name: HubThat
version: ${versionName}.${buildNumber} version: ${versionName}.${buildNumber}
author: mind_overflow author: mind_overflow
main: net.mindoverflow.hubthat.HubThat main: wtf.beatrice.hubthat.HubThat
api-version: 1.13 api-version: 1.13
commands: commands:
hubthat: hubthat: