From 16a9d4e5c94630e1a4541c9a551c7835f68a507e Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Sat, 4 May 2024 10:14:20 -0500 Subject: [PATCH] blood rune check work --- src/engine/net/client/msg/ApplyRuneMsg.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/engine/net/client/msg/ApplyRuneMsg.java b/src/engine/net/client/msg/ApplyRuneMsg.java index 421f35f1..f62d4df6 100644 --- a/src/engine/net/client/msg/ApplyRuneMsg.java +++ b/src/engine/net/client/msg/ApplyRuneMsg.java @@ -218,7 +218,16 @@ public class ApplyRuneMsg extends ClientNetMsg { int mod = rba.getModValue(); switch (attrID) { case MBServerStatics.RUNE_COST_ATTRIBUTE_ID: + switch (rb.getName()) { + case "Born of the Ethyri": + case "Born of the Taripontor": + case "Born of the Gwendannen": + case "Born of the Invorri": + case "Born of the Irydnu": + mod = 0; + } if (mod > playerCharacter.getUnusedStatPoints()) { + return false; } cost = mod;