From 0df06244a5fc1809bc99b9fb9da7602904937a5a Mon Sep 17 00:00:00 2001 From: Adry_85 <Adrya85@hotmail.it> Date: Thu, 4 Apr 2013 13:36:06 +0000 Subject: [PATCH] BETA: NPE fix. Reported by: takhs7 Patch by: Zoey76 --- .../dist/game/data/scripts/handlers/effecthandlers/Heal.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Heal.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Heal.java index 8eb1e90986..25d8d5c966 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Heal.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Heal.java @@ -80,7 +80,10 @@ public class Heal extends L2Effect // no static bonus // grade dynamic bonus final L2ItemInstance weaponInst = activeChar.getActiveWeaponInstance(); - mAtkMul = weaponInst.getItem().getItemGrade() == L2Item.CRYSTAL_S84 ? 4 : weaponInst.getItem().getItemGrade() == L2Item.CRYSTAL_S80 ? 2 : 1; + if (weaponInst != null) + { + mAtkMul = weaponInst.getItem().getItemGrade() == L2Item.CRYSTAL_S84 ? 4 : weaponInst.getItem().getItemGrade() == L2Item.CRYSTAL_S80 ? 2 : 1; + } // shot dynamic bonus mAtkMul = bss ? mAtkMul * 4 : mAtkMul + 1; } -- GitLab