summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandeco.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/commands/Commandeco.java')
-rw-r--r--Essentials/src/net/ess3/commands/Commandeco.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/net/ess3/commands/Commandeco.java b/Essentials/src/net/ess3/commands/Commandeco.java
index 0c9fe4dc0..0ebf4c04f 100644
--- a/Essentials/src/net/ess3/commands/Commandeco.java
+++ b/Essentials/src/net/ess3/commands/Commandeco.java
@@ -78,7 +78,7 @@ public class Commandeco extends EssentialsCommand
case TAKE:
if (!player.canAfford(amount, false))
{
- throw new Exception(_("You do not have sufficient funds."));
+ throw new Exception(_("§4You do not have sufficient funds."));
}
player.takeMoney(amount);
break;
@@ -106,7 +106,7 @@ public class Commandeco extends EssentialsCommand
case TAKE:
if (!player.canAfford(amount, false))
{
- throw new Exception(_("You do not have sufficient funds."));
+ throw new Exception(_("§4You do not have sufficient funds."));
}
player.takeMoney(amount, sender);
break;