human blood runes cost 0

This commit is contained in:
2024-05-03 21:04:22 -05:00
parent 4924133416
commit c207bd14b6
+9 -1
View File
@@ -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);