From d9ee9b036c54d624f083f862e1e4a79aae88d7d1 Mon Sep 17 00:00:00 2001 From: Iaccidentally Date: Sat, 26 Jan 2013 17:12:17 -0500 Subject: Update heal to account for the fact that 20 is not always the max health --- .../src/com/earth2me/essentials/commands/Commandheal.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java index 224e782de..c88dfb852 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java @@ -68,14 +68,14 @@ public class Commandheal extends EssentialsCommand } } - private void healPlayer(final Player p) + private void healPlayer(final Player player) { - p.setHealth(20); - p.setFoodLevel(20); - p.sendMessage(_("heal")); - for (PotionEffect effect : p.getActivePotionEffects()) + player.setHealth(player.getMaxHealth()); + player.setFoodLevel(20); + player.sendMessage(_("heal")); + for (PotionEffect effect : player.getActivePotionEffects()) { - p.removePotionEffect(effect.getType()); + player.removePotionEffect(effect.getType()); } } } -- cgit v1.2.3 From bb29d4826894eb77c26974d438a2f5319759ba86 Mon Sep 17 00:00:00 2001 From: Iaccidentally Date: Sat, 26 Jan 2013 17:16:48 -0500 Subject: Make heal remove fire from players. --- Essentials/src/com/earth2me/essentials/commands/Commandheal.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java index c88dfb852..23a8078b1 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java @@ -72,6 +72,7 @@ public class Commandheal extends EssentialsCommand { player.setHealth(player.getMaxHealth()); player.setFoodLevel(20); + player.setFireTicks(0); player.sendMessage(_("heal")); for (PotionEffect effect : player.getActivePotionEffects()) { -- cgit v1.2.3 From addd55228b79efdeda6092a293303b9d8cb7a5d3 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Sun, 27 Jan 2013 14:13:10 +0000 Subject: Don't try and charge a user if we don't have the chat data stored. --- .../earth2me/essentials/chat/EssentialsChatPlayerListenerHighest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerHighest.java b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerHighest.java index db728bd09..9af8cf593 100644 --- a/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerHighest.java +++ b/EssentialsChat/src/com/earth2me/essentials/chat/EssentialsChatPlayerListenerHighest.java @@ -23,7 +23,7 @@ public class EssentialsChatPlayerListenerHighest extends EssentialsChatPlayer public void onPlayerChat(final AsyncPlayerChatEvent event) { final ChatStore chatStore = delChatStore(event); - if (isAborted(event)) + if (isAborted(event) || chatStore == null) { return; } -- cgit v1.2.3 From 4f35a72174e87a4cf562ac1d080e9e9cef14ac65 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Sun, 27 Jan 2013 15:26:46 +0000 Subject: Add command syntax comment, for clarification. Merge branch '2.9' of github.com:essentials/Essentials into 2.9 --- .../essentials/commands/Commandfirework.java | 35 +++++++++++++++++++--- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java b/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java index a9ad48dbb..5a3ad502d 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandfirework.java @@ -3,6 +3,7 @@ package com.earth2me.essentials.commands; import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.MetaItemStack; import com.earth2me.essentials.User; +import com.earth2me.essentials.Util; import java.util.HashMap; import java.util.Map; import java.util.regex.Pattern; @@ -14,7 +15,23 @@ import org.bukkit.entity.EntityType; import org.bukkit.entity.Firework; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.meta.FireworkMeta; +import org.bukkit.util.Vector; +//This command has quite a complicated syntax, in theory it has 4 seperate syntaxes which are all variable: +// +//1: /firework clear - This clears all of the effects on a firework stack +// +//2: /firework power - This changes the base power of a firework +// +//3: /firework fire - This 'fires' a copy of the firework held. +//3: /firework fire - This 'fires' a number of copies of the firework held. +//3: /firework fire - This 'fires' a copy of the firework held, in the direction you are looking, #easteregg +// +//4: /firework [meta] - This will add an effect to the firework stack held +//4: /firework color: - The minimum you need to set an effect is 'color' +//4: Full Syntax: color: [fade:] [shape:] [effect:] +//4: Possible Shapes: star, ball, large, creeper, burst +//4: Possible Effects trail, twinkle public class Commandfirework extends EssentialsCommand { @@ -71,8 +88,9 @@ public class Commandfirework extends EssentialsCommand else if ((args[0].equalsIgnoreCase("fire") || (args[0].equalsIgnoreCase("p"))) && user.isAuthorized("essentials.firework.fire")) { - int amount; - try + int amount = 1; + boolean direction = false; + if (Util.isInt(args[1])) { final int serverLimit = ess.getSettings().getSpawnMobLimit(); amount = Integer.parseInt(args[1]); @@ -82,14 +100,23 @@ public class Commandfirework extends EssentialsCommand user.sendMessage(_("mobSpawnLimit")); } } - catch (Exception e) + else { - amount = 1; + direction = true; } for (int i = 0; i < amount; i++) { Firework firework = (Firework)user.getWorld().spawnEntity(user.getLocation(), EntityType.FIREWORK); FireworkMeta fmeta = (FireworkMeta)stack.getItemMeta(); + if (direction) + { + final Vector vector = user.getEyeLocation().getDirection().multiply(0.075); + if (fmeta.getPower() > 1) + { + fmeta.setPower(1); + } + firework.setVelocity(vector); + } firework.setFireworkMeta(fmeta); } } -- cgit v1.2.3 From 1ae58d05b488004c7e96ee52907a1f55a17b5a1e Mon Sep 17 00:00:00 2001 From: KHobbits Date: Sun, 27 Jan 2013 16:39:50 +0000 Subject: Fix vanish status when switching worlds. This fixes the potion effect being cleared on world change. --- .../src/com/earth2me/essentials/EssentialsPlayerListener.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java index 9232ce1a0..47672288d 100644 --- a/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java +++ b/Essentials/src/com/earth2me/essentials/EssentialsPlayerListener.java @@ -425,10 +425,14 @@ public class EssentialsPlayerListener implements Listener user.sendMessage(_("noGodWorldWarning")); } - if (!event.getPlayer().getWorld().getName().equals(newWorld)) + if (!user.getWorld().getName().equals(newWorld)) { user.sendMessage(_("currentWorld", newWorld)); } + if (user.isVanished()) + { + user.setVanished(user.isAuthorized("essentials.vanish")); + } } @EventHandler(priority = EventPriority.NORMAL) -- cgit v1.2.3