diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/core/commands/subcommands/DebugCommand.java b/src/main/java/io/github/thebusybiscuit/slimefun4/core/commands/subcommands/DebugCommand.java index cf22efaab..4a3343c43 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/core/commands/subcommands/DebugCommand.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/core/commands/subcommands/DebugCommand.java @@ -11,6 +11,8 @@ import javax.annotation.Nonnull; /** * The debug command will allow server owners to get information for us developers. * We can put debug messages in the code and they can trigger it for us to see what exactly is going on. + * + * @author WalshyDev */ public class DebugCommand extends SubCommand { diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/Debug.java b/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/Debug.java index 30e7a1042..f0549a58c 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/Debug.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/Debug.java @@ -5,12 +5,12 @@ import io.github.thebusybiscuit.slimefun4.implementation.Slimefun; import javax.annotation.Nonnull; import javax.annotation.Nullable; -// We don't have validates in here because we want it to be quick and it's mainly for us internal devs. - /** * This class is responsible for debug logging. * Server owners can enable testing specific cases and have debug logs for those cases. * + * Note: We don't have validates in here because we want it to be quick and it's mainly for us internal devs. + * * @author WalshyDev */ public final class Debug { diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/TestCase.java b/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/TestCase.java index 4513647dd..08531a30c 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/TestCase.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/core/debug/TestCase.java @@ -5,6 +5,8 @@ import java.util.Locale; /** * Test cases in Slimefun. These are very useful for debugging why behavior is happening. * Server owners can enable these with {@code /sf debug } + * + * @author WalshyDev */ public enum TestCase {