From 457c520eb6d93d5876ab7b3ffaef137ad106fed8 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Wed, 9 Jan 2019 23:40:08 +0100 Subject: [PATCH] Fixing debugpaste description --- .../plotsquared/plot/commands/DebugPaste.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/DebugPaste.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/DebugPaste.java index 1738ce0e6..bb03b384b 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/DebugPaste.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/DebugPaste.java @@ -22,7 +22,7 @@ import java.util.ArrayList; import java.util.List; @CommandDeclaration(command = "debugpaste", aliases = "dp", usage = "/plot debugpaste", - description = "Upload settings.yml, worlds.yml, commands.yml and latest.log to www.hastebin.com", + description = "Upload settings.yml, worlds.yml, PlotSquared.use_THIS.yml and your latest.log to https://incendo.org", permission = "plots.debugpaste", category = CommandCategory.DEBUG) public class DebugPaste extends SubCommand { @@ -96,7 +96,7 @@ import java.util.List; C.DEBUG_REPORT_CREATED.s().replace("%url%", link)); } else { final String responseMessage = jsonObject.get("response").getAsString(); - MainUtil.sendMessage(player, String.format("&cFailed to create the debug paste: %s", responseMessage)); + MainUtil.sendMessage(player, String.format("&cFailed to create the debug paste: %s", responseMessage)); } } catch (final Throwable throwable) { throwable.printStackTrace();