From 789346c714150964e5ae3832282965a649a17430 Mon Sep 17 00:00:00 2001 From: Saad Date: Sat, 8 Aug 2026 20:31:27 -0600 Subject: [PATCH] Added sound when successfully stealing from a stall --- .../src/main/content/global/skill/thieving/StallThiefPulse.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Server/src/main/content/global/skill/thieving/StallThiefPulse.java b/Server/src/main/content/global/skill/thieving/StallThiefPulse.java index b08185335..7a3071840 100644 --- a/Server/src/main/content/global/skill/thieving/StallThiefPulse.java +++ b/Server/src/main/content/global/skill/thieving/StallThiefPulse.java @@ -14,6 +14,7 @@ import core.game.world.map.RegionManager; import core.game.world.update.flag.context.Animation; import core.tools.RandomFunction; import core.tools.StringUtils; +import org.rs09.consts.Sounds; import static core.api.ContentAPIKt.*; import content.data.Quests; @@ -108,6 +109,7 @@ public final class StallThiefPulse extends SkillPulse { } final boolean success = success(); if (success) { + playAudio(player, Sounds.PICK_2581); if (stall == Stall.SILK_STALL) { player.getSavedData().getGlobalData().setSilkSteal(System.currentTimeMillis() + 1800000); }