From 00340d51541c0afb2adea41f86004e134a32cf11 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sat, 14 May 2016 01:13:08 +1000 Subject: [PATCH] Important fix --- Bukkit/src/main/resources/plugin.yml | 2 +- .../java/com/intellectualcrafters/plot/commands/PluginCmd.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/src/main/resources/plugin.yml b/Bukkit/src/main/resources/plugin.yml index 72e66d278..7bf700a61 100644 --- a/Bukkit/src/main/resources/plugin.yml +++ b/Bukkit/src/main/resources/plugin.yml @@ -4,7 +4,7 @@ version: ${version} load: STARTUP description: > Easy, yet powerful Plot World generation and management. -authors: [Citymonstret, Empire92] +authors: [Citymonstret, Empire92, MattBDev] softdepend: [WorldEdit, BarAPI, CameraAPI, Vault] loadbefore: [MultiWorld, Multiverse-Core] database: false diff --git a/Core/src/main/java/com/intellectualcrafters/plot/commands/PluginCmd.java b/Core/src/main/java/com/intellectualcrafters/plot/commands/PluginCmd.java index b460f97e0..6c3e1afd2 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/commands/PluginCmd.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/commands/PluginCmd.java @@ -21,7 +21,7 @@ public class PluginCmd extends SubCommand { @Override public boolean onCommand(PlotPlayer plr, String[] args) { MainUtil.sendMessage(plr, String.format("$2>> $1&lPlotSquared $2($1Version$2: $1%s$2)", StringMan.join(PS.get().getVersion(), "."))); - MainUtil.sendMessage(plr, "$2>> $1&lAuthors$2: $1Citymonstret $2& $1Empire92"); + MainUtil.sendMessage(plr, "$2>> $1&lAuthors$2: $1Citymonstret $2& $1Empire92 $2& $1MattBDev"); MainUtil.sendMessage(plr, "$2>> $1&lWiki$2: $1https://github.com/IntellectualCrafters/PlotSquared/wiki"); MainUtil.sendMessage(plr, "$2>> $1&lNewest Version$2: $1" + getNewestVersionString()); return true;