Browse Source

Fixes issue where EQ UI would say new weapons were in your inventory whenever an item is picked up.

tags/v0.4^2
Luke 4 years ago
parent
commit
566ee53a72
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/ui/templates/equipment/equipment.js

+ 1
- 1
src/client/ui/templates/equipment/equipment.js View File

@@ -115,7 +115,7 @@ define([
if (slot.indexOf('finger') === 0)
slot = 'finger';
else if (slot === 'oneHanded')
return (['oneHanded', 'twoHanded'].includes(slot) && i.isNew);
return (['oneHanded', 'twoHanded'].includes(i.slot) && i.isNew);

return (i.slot === slot && i.isNew);
});


Loading…
Cancel
Save