summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandeco.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2013-04-06 15:45:27 +0200
committersnowleo <schneeleo@gmail.com>2013-04-06 16:09:02 +0200
commit0387d18ce2009ce8bf8dfb659eebb300dd07e15e (patch)
treecce091dd311023ebf5359c426fef4a770230eb73 /Essentials/src/net/ess3/commands/Commandeco.java
parent96342bc6ce75699a1881e550f855140d58f7529f (diff)
downloadEssentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.gz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.lz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.tar.xz
Essentials-0387d18ce2009ce8bf8dfb659eebb300dd07e15e.zip
Use correct translations with color
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;