diff --git a/src/com/redstoner/misc/Utils.java b/src/com/redstoner/misc/Utils.java index 4ea6032..53825cd 100644 --- a/src/com/redstoner/misc/Utils.java +++ b/src/com/redstoner/misc/Utils.java @@ -155,4 +155,13 @@ public final class Utils } return classname; } + + /** Displays the module header to the recipient.
+ * Format: &2--=[ %MODULE% ]=-- + * + * @param recipient Whom to display the header to. */ + public static void sendModuleHeader(CommandSender recipient) + { + recipient.sendMessage("ยง2--=[ " + getCaller() + " ]=--"); + } }