From fe6bbc1bdc51d123612c7843cd2fbfc744e9e5c9 Mon Sep 17 00:00:00 2001 From: Alexander Meech Date: Sat, 14 Oct 2017 19:24:12 -0700 Subject: [PATCH] Implement a more useful error message for missing chest animations --- .../src/mineplex/core/treasure/TreasureLocation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/treasure/TreasureLocation.java b/Plugins/Mineplex.Core/src/mineplex/core/treasure/TreasureLocation.java index ae5af5600..26f165654 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/treasure/TreasureLocation.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/treasure/TreasureLocation.java @@ -177,7 +177,7 @@ public class TreasureLocation implements Listener if (!treasure.hasAnimations()) { - player.sendMessage(F.main(getManager().getName(), "Ruh ro rhaggy, looks like there's no ranimation set for the rhest type.")); + player.sendMessage(F.main(getManager().getName(), "It looks like there is no animation associated with that chest type. Please file a bug report.")); return false; }