diff --git a/Server/src/main/content/global/skill/fletching/FletchingPulse.java b/Server/src/main/content/global/skill/fletching/FletchingPulse.java index 9c7d0d638..dbc18af9f 100644 --- a/Server/src/main/content/global/skill/fletching/FletchingPulse.java +++ b/Server/src/main/content/global/skill/fletching/FletchingPulse.java @@ -110,6 +110,16 @@ public final class FletchingPulse extends SkillPulse { switch (fletch) { case ARROW_SHAFT: return "You carefully cut the wood into 15 arrow shafts."; + case OAK_ARROW_SHAFT: + return "You carefully cut the wood into 30 arrow shafts."; + case WILLOW_ARROW_SHAFT: + return "You carefully cut the wood into 45 arrow shafts."; + case MAPLE_ARROW_SHAFT: + return "You carefully cut the wood into 60 arrow shafts."; + case YEW_ARROW_SHAFT: + return "You carefully cut the wood into 75 arrow shafts."; + case MAGIC_ARROW_SHAFT: + return "You carefully cut the wood into 90 arrow shafts."; default: return "You carefully cut the wood into " + (StringUtils.isPlusN(fletch.getItem().getName()) ? "an" : "a") + " " + fletch.getItem().getName().replace("(u)", "").trim() + "."; }