summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandfirework.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/commands/Commandfirework.java')
-rw-r--r--Essentials/src/net/ess3/commands/Commandfirework.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/Essentials/src/net/ess3/commands/Commandfirework.java b/Essentials/src/net/ess3/commands/Commandfirework.java
index aa1e60880..c822a3c67 100644
--- a/Essentials/src/net/ess3/commands/Commandfirework.java
+++ b/Essentials/src/net/ess3/commands/Commandfirework.java
@@ -52,7 +52,7 @@ public class Commandfirework extends EssentialsCommand
FireworkMeta fmeta = (FireworkMeta)stack.getItemMeta();
fmeta.clearEffects();
stack.setItemMeta(fmeta);
- user.sendMessage(_("Removed all effects from held stack."));
+ user.sendMessage(_("§6Removed all effects from held stack."));
}
else if (args.length > 1 && (args[0].equalsIgnoreCase("power") || (args[0].equalsIgnoreCase("p"))))
{
@@ -64,7 +64,7 @@ public class Commandfirework extends EssentialsCommand
}
catch (NumberFormatException e)
{
- throw new Exception(_("The option {0} is not a valid value for {1}.", args[1], args[0]));
+ throw new Exception(_("§6The option §4{0} §6is not a valid value for §4{1}§6.", args[1], args[0]));
}
stack.setItemMeta(fmeta);
}
@@ -118,7 +118,7 @@ public class Commandfirework extends EssentialsCommand
}
catch (Exception e)
{
- user.sendMessage(_("Firework parameters: color:<color> [fade:<color>] [shape:<shape>] [effect:<effect>]nTo use multiple colors/effects, separate values with commas: red,blue,pinknShapes: star, ball, large, creeper, burst Effects: trail, twinkle."));
+ user.sendMessage(_("§6Firework parameters:§c color:<color> [fade:<color>] [shape:<shape>] [effect:<effect>]n§6To use multiple colors/effects, separate values with commas: §cred,blue,pinkn§6Shapes:§c star, ball, large, creeper, burst §6Effects:§c trail, twinkle."));
throw e;
}
}
@@ -129,15 +129,15 @@ public class Commandfirework extends EssentialsCommand
FireworkEffect effect = mStack.getFireworkBuilder().build();
if (fmeta.getEffects().size() > 0 && !Permissions.FIREWORK_MULTIPLE.isAuthorized(user))
{
- throw new Exception(_("You cannot apply more than one charge to this firework."));
+ throw new Exception(_("§4You cannot apply more than one charge to this firework."));
}
fmeta.addEffect(effect);
stack.setItemMeta(fmeta);
}
else
{
- user.sendMessage(_("Firework parameters: color:<color> [fade:<color>] [shape:<shape>] [effect:<effect>]nTo use multiple colors/effects, separate values with commas: red,blue,pinknShapes: star, ball, large, creeper, burst Effects: trail, twinkle."));
- throw new Exception(_("Invalid firework charge parameters inserted, must set a color first."));
+ user.sendMessage(_("§6Firework parameters:§c color:<color> [fade:<color>] [shape:<shape>] [effect:<effect>]n§6To use multiple colors/effects, separate values with commas: §cred,blue,pinkn§6Shapes:§c star, ball, large, creeper, burst §6Effects:§c trail, twinkle."));
+ throw new Exception(_("§4Invalid firework charge parameters inserted, must set a color first."));
}
}
}
@@ -148,7 +148,7 @@ public class Commandfirework extends EssentialsCommand
}
else
{
- throw new Exception(_("You must be holding a firework to add effects."));
+ throw new Exception(_("§4You must be holding a firework to add effects."));
}
}
}