Added runecrafting exp when crafting altar teleport tablets

This commit is contained in:
randy 2024-12-07 19:36:12 -07:00
parent ed9a6fa118
commit 05c1ac1dc0

View file

@ -326,6 +326,7 @@ public final class RuneCraftPulse extends SkillPulse<Item> {
if (altar == Altar.SOUL) { tablet = new Item(8022, amount); }
if (tablet != null && player.getInventory().remove(clay)) {
player.getInventory().add(tablet);
player.getSkills().addExperience(Skills.RUNECRAFTING, rune.getExperience() * amount, true);
player.getPacketDispatch().sendMessage("You bind the temple's power into teleport tablets.");
}
}