From dfa4ecbe4fff8169e5cee040f9e9f12aa9031624 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Tue, 13 Dec 2011 01:47:58 +0000 Subject: [PATCH] Inform user that they were healed. --- .../src/com/earth2me/essentials/commands/Commandheal.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java index 02b8ed30c..82678c96e 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandheal.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandheal.java @@ -64,6 +64,8 @@ public class Commandheal extends EssentialsCommand continue; } p.setHealth(20); + p.setFoodLevel(20); + p.sendMessage(_("heal")); sender.sendMessage(_("healOther", p.getDisplayName())); } }