From 2b27db5805e0f7782bcf5e513bdcfd4d3c888021 Mon Sep 17 00:00:00 2001 From: Brianna O'Keefe Date: Wed, 6 Feb 2019 01:57:34 -0500 Subject: [PATCH] Clean --- .gitlab-ci.yml | 2 +- .../com/songoda/ultimatetimber/commands/ToggleCommand.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6a1f3f..1bd1a5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: variables: name: "UltimateTimber" path: "/builds/$CI_PROJECT_PATH" - version: "1.0.8" + version: "1.0.10" build: stage: build diff --git a/src/main/java/com/songoda/ultimatetimber/commands/ToggleCommand.java b/src/main/java/com/songoda/ultimatetimber/commands/ToggleCommand.java index 75f7ab2..54f876c 100644 --- a/src/main/java/com/songoda/ultimatetimber/commands/ToggleCommand.java +++ b/src/main/java/com/songoda/ultimatetimber/commands/ToggleCommand.java @@ -9,9 +9,9 @@ public class ToggleCommand { public static void toggleChopping(Player player) { if (UltimateTimber.getInstance().toggleChopping(player)) { - player.sendMessage(Methods.formatText("UT Chopping Mode: &aEnabled")); + player.sendMessage(Methods.formatText(UltimateTimber.getInstance().getPrefix() + " Chopping Mode: &aEnabled")); } else { - player.sendMessage(Methods.formatText("UT Chopping Mode: &cDisabled")); + player.sendMessage(Methods.formatText(UltimateTimber.getInstance().getPrefix() + " Chopping Mode: &cDisabled")); } }