mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-02 16:49:03 +00:00
[PR #493] [MERGED] Fix Broken Game Sounds on Large ID NPCS #1259
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/2006-Scape/2006Scape/pull/493
Author: @puremana
Created: 4/15/2021
Status: ✅ Merged
Merged: 4/23/2021
Merged by: @Dark98
Base:
master← Head:fix-npc-game-sounds📝 Commits (1)
f0c2547Replace get npc name associate array method to indexed array method📊 Changes
1 file changed (+8 additions, -1 deletions)
View changed files
📝
2006Scape Server/src/main/java/com/rs2/game/content/music/sound/CombatSounds.java(+8 -1)📄 Description
The current code uses a
GetNpcNamemethod which incorrectly assumes that the NPC List is an associate array where the ID is the index. This is not the case as the index is actually incremental.While I would have rather changed the NPC List to be an associate array, as in the future writing code like this is not scalable for thousands of people on each server with thousands of NPC's, however that would require a rewrite of other methods too.
I found this issue when I attempted to kill Giant Mole which has an ID of 3340 but an array index of 2773. There is no npc with the index of 3340 so it crashed the server.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.