From f295f90f47159ddbcc399c4539dc66e47db4c55f Mon Sep 17 00:00:00 2001 From: Byte Date: Sun, 11 Sep 2022 12:58:44 +0000 Subject: [PATCH] Corrected xp reward for thieving yanille watchmen --- .../kotlin/rs09/game/node/entity/skill/thieving/Pickpockets.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/node/entity/skill/thieving/Pickpockets.kt b/Server/src/main/kotlin/rs09/game/node/entity/skill/thieving/Pickpockets.kt index 34a56d531..a0233a4ea 100644 --- a/Server/src/main/kotlin/rs09/game/node/entity/skill/thieving/Pickpockets.kt +++ b/Server/src/main/kotlin/rs09/game/node/entity/skill/thieving/Pickpockets.kt @@ -151,7 +151,7 @@ enum class Pickpockets(val ids: IntArray, val requiredLevel: Int, val low: Doubl KNIGHT_OF_ADROUGNE(intArrayOf(23, 26), 55, 50.0, 240.0, 84.3, 3,3,5, WeightBasedTable.create( WeightedItem(Items.COINS_995,50,50,1.0,true) )), - YANILLE_WATCHMAN(intArrayOf(34), 65, 137.5, 50.0, 240.0, 3,3,5, WeightBasedTable.create( + YANILLE_WATCHMAN(intArrayOf(34), 65, 50.0, 240.0, 137.5, 3,3,5, WeightBasedTable.create( WeightedItem(Items.COINS_995,60,60,1.0,true), WeightedItem(Items.BREAD_2309,1,1,1.0,true) )),