From 2806c08f7b39868afe74556e3b72ae6fe78c1855 Mon Sep 17 00:00:00 2001 From: oftheshire Date: Sun, 19 Apr 2026 09:59:49 +0000 Subject: [PATCH] Spinolyp poison now only applies to range attacks --- .../region/fremennik/waterbirth/handlers/SpinolypNPC.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/content/region/fremennik/waterbirth/handlers/SpinolypNPC.java b/Server/src/main/content/region/fremennik/waterbirth/handlers/SpinolypNPC.java index 7836a1c2c..e887f5263 100644 --- a/Server/src/main/content/region/fremennik/waterbirth/handlers/SpinolypNPC.java +++ b/Server/src/main/content/region/fremennik/waterbirth/handlers/SpinolypNPC.java @@ -146,7 +146,7 @@ public final class SpinolypNPC extends AbstractNPC { super.impact(entity, victim, state); if (super.getType() == CombatStyle.MAGIC && state.getEstimatedHit() > 0) { victim.getSkills().decrementPrayerPoints(1); - } else { + } else if (super.getType() == CombatStyle.RANGE && state.getEstimatedHit() > 0) { if (RandomFunction.random(20) == 5) { applyPoison(victim, entity, 30); }