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;