[Client] Remove unimplemented Client Insight Method. (#2663)

* [Cleanup] Remove unused Insight Method, and cleanup Magic Numbers

* change emu->NPC back to 0, not Doug
This commit is contained in:
Aeadoin
2022-12-21 18:41:56 -05:00
committed by GitHub
parent d5aecb228a
commit 2f9a6daab5
11 changed files with 64 additions and 397 deletions
+3 -3
View File
@@ -2955,13 +2955,13 @@ uint32 NPC::GetSpawnPointID() const
void NPC::NPCSlotTexture(uint8 slot, uint16 texture)
{
if (slot == 7) {
if (slot == EQ::invslot::slotNeck) {
d_melee_texture1 = texture;
}
else if (slot == 8) {
else if (slot == EQ::invslot::slotBack) {
d_melee_texture2 = texture;
}
else if (slot < 6) {
else if (slot < EQ::invslot::slotShoulders) {
// Reserved for texturing individual armor slots
}
}