From b33ad22740a18b4f66e9ca2e5a52b9e66e2c1327 Mon Sep 17 00:00:00 2001 From: randy Date: Sun, 17 Nov 2024 17:16:20 -0700 Subject: [PATCH] Removing Jarvald reference to NPC Constlib, since I have no idea how to update that The original change (https://gitlab.com/2009scape/2009scape/-/commit/fb2535e248926fdc2a21f3a633e3c5e291e20520?merge_request_iid=1911) Says it requires a constlib update. From what I can tell, that is made here: https://gitlab.com/2009scape/tools/rs09-constants-library. However, I have no idea how to actually get a new build of this. Perhaps the server files will be updated to include this in the future, but in the meantime I am changing this back so the server actually starts. --- .../region/fremennik/rellekka/dialogue/JarvaldDialogue.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/content/region/fremennik/rellekka/dialogue/JarvaldDialogue.kt b/Server/src/main/content/region/fremennik/rellekka/dialogue/JarvaldDialogue.kt index cdf685e13..0079c1b14 100644 --- a/Server/src/main/content/region/fremennik/rellekka/dialogue/JarvaldDialogue.kt +++ b/Server/src/main/content/region/fremennik/rellekka/dialogue/JarvaldDialogue.kt @@ -200,6 +200,6 @@ class JarvaldDialogue(player: Player? = null) : DialoguePlugin(player) { } override fun getIds(): IntArray { - return intArrayOf(NPCs.JARVALD_2435, NPCs.JARVALD_2436, NPCs.JARVALD_2437, NPCs.JARVALD_2438) + return intArrayOf(2435, NPCs.JARVALD_2436, NPCs.JARVALD_2437, NPCs.JARVALD_2438) } }