Skip to content
Snippets Groups Projects
Commit 467ef315 authored by Sky's avatar Sky
Browse files

Fixed when Herbs are not applied and the system message is not printed when a...

Fixed when Herbs are not applied and the system message is not printed when a mob is killed by a spell while herb auto-loot is on.

Reported by: @HD321kbps, @Maneco2
parent c3c81d79
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ public class ItemSkillsTemplate implements IItemHandler { ...@@ -89,7 +89,7 @@ public class ItemSkillsTemplate implements IItemHandler {
return false; return false;
} }
if (!item.isPotion() && !item.isElixir() && !item.isScroll() && playable.isCastingNow()) { if (!item.isPotion() && !item.isElixir() && !item.isScroll() && !item.getItem().hasExImmediateEffect() && playable.isCastingNow()) {
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment