From c207bd14b61746b1fdaea103092c4f39f2ef98dc Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Fri, 3 May 2024 21:04:22 -0500 Subject: [PATCH] human blood runes cost 0 --- src/engine/net/client/msg/ApplyRuneMsg.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/engine/net/client/msg/ApplyRuneMsg.java b/src/engine/net/client/msg/ApplyRuneMsg.java index 33c88b33..3286f642 100644 --- a/src/engine/net/client/msg/ApplyRuneMsg.java +++ b/src/engine/net/client/msg/ApplyRuneMsg.java @@ -364,7 +364,15 @@ public class ApplyRuneMsg extends ClientNetMsg { playerCharacter.recalculate(); } } - + 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": + cost = 0; + break; + } if (cost > 0) { ModifyStatMsg msm = new ModifyStatMsg((0 - cost), 0, 3); dispatch = Dispatch.borrow(playerCharacter, msm);