From 83b2c119b35af85c6fe8126f08f45cc7f327b0f7 Mon Sep 17 00:00:00 2001 From: halogod35 Date: Thu, 23 Feb 2023 21:43:30 -0500 Subject: [PATCH] Update Firemaking.java (#627) --- .../rs2/game/content/skills/firemaking/Firemaking.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java index 42060bcb..f192b18e 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java @@ -115,13 +115,13 @@ public class Firemaking { GameEngine.itemHandler.removeGroundItem(c, logId, x, y, false); c.getPacketSender().sendSound(SoundList.FIRE_SUCCESSFUL, 100, 0); if (itemUsed == 7331 || usedWith == 7331) - new Object(11406, x, y, 0, 0, 10, -1, 60 + Misc.random(30)); + new Object(11406, x, y, 0, 0, 10, -1, 200); else if (itemUsed == 7330 || usedWith == 7330) - new Object(11405, x, y, 0, 0, 10, -1, 60 + Misc.random(30)); + new Object(11405, x, y, 0, 0, 10, -1, 200); else if (itemUsed == 7329 || usedWith == 7329) - new Object(11404, x, y, 0, 0, 10, -1, 60 + Misc.random(30)); + new Object(11404, x, y, 0, 0, 10, -1, 200); else - new Object(2732, x, y, 0, 0, 10, -1, 60 + Misc.random(30)); + new Object(2732, x, y, 0, 0, 10, -1, 200); c.getPacketSender().sendMessage("The fire catches and the logs begin to burn."); c.getPlayerAssistant().addSkillXP((int) l.getXp(), 11); if (c.tutorialProgress == 4) { @@ -169,7 +169,7 @@ public class Firemaking { public void stop() { } - }, 60); + }, 100 + Misc.random(98)); } } }