Update license
continuous-integration/drone/push Build is passing Details

Open source :)
This commit is contained in:
Bea 2022-08-11 19:23:02 +02:00
parent 6ea6628587
commit b80cd4b1c9
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ public class HubThatCommand implements CommandExecutor
if(args.length == 0)
{
MessageUtils.sendColorizedMessage(commandSender, "&6" + plugin.getName() +"&7 version &6" + plugin.getDescription().getVersion() + "&7 for &6SpigotMC/CraftBukkit &6" + PluginCache.minSupportedVersion + "&7-&6" + PluginCache.maxSupportedVersion + "&7.");
MessageUtils.sendColorizedMessage(commandSender, "&7Coded by &6" + debugger.authorName + "&7, all rights reserved (&6Copyright © '20&7).");
MessageUtils.sendColorizedMessage(commandSender, "&7Coded by &6" + debugger.authorName + "&7, &6GNU GPLv3&7).");
commandSender.sendMessage("");
MessageUtils.sendColorizedMessage(commandSender, "&7Write &6/"+ plugin.getName().toLowerCase() + " help&7 to see plugin commands.");
}

View File

@ -16,11 +16,11 @@ public class Debugger
private String className;
private String packageName;
// Save my UUID and current Username somewhere so I can get debug messages too.
// Save my UUID and current Username somewhere, so I can get debug messages too.
public UUID authorUUID = UUID.fromString("297a1dc8-c0a3-485a-ad21-8956c749f927");
public String authorName = "mind_overflow";
// Make a constructor requiring to be given a class so we exactly know which class has made an instance of it and all of its properties.
// Make a constructor requiring to be given a class, so we exactly know which class has made an instance of it and all of its properties.
public Debugger(String instanceClassName)
{
// Only run this code and actually make a whole instance of the class only if debugging is active.