summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandgive.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/commands/Commandgive.java')
-rw-r--r--Essentials/src/net/ess3/commands/Commandgive.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/net/ess3/commands/Commandgive.java b/Essentials/src/net/ess3/commands/Commandgive.java
index cfdcc7d1a..763428744 100644
--- a/Essentials/src/net/ess3/commands/Commandgive.java
+++ b/Essentials/src/net/ess3/commands/Commandgive.java
@@ -30,7 +30,7 @@ public class Commandgive extends EssentialsCommand
final String itemname = stack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", "");
if (!Permissions.GIVE.isAuthorized(sender, stack))
{
- throw new Exception(_("You are not allowed to spawn the item {0}.", itemname));
+ throw new Exception(_("§4You are not allowed to spawn the item§c {0}§4.", itemname));
}
if (args.length > 3 && Util.isInt(args[2]) && Util.isInt(args[3]))
@@ -75,7 +75,7 @@ public class Commandgive extends EssentialsCommand
if (stack.getTypeId() == 0)
{
- throw new Exception(_("You are not allowed to spawn the item {0}.", "Air"));
+ throw new Exception(_("§4You are not allowed to spawn the item§c {0}§4.", "Air"));
}
giveTo.giveItems(stack, false);