Browse Source

bug: Fixed a bug causing items with faction requirement to not be EQ-able

tags/v0.12.0.6^2
Shaun 1 year ago
parent
commit
f5e617f419
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/clientComponents/reputation.js

+ 1
- 1
src/server/clientComponents/reputation.js View File

@@ -32,7 +32,7 @@ define([
},

getTier: function (factionId) {
return this.factions.find(f => f.id === factionId)?.tier ?? 3;
return this.list.find(f => f.id === factionId)?.tier ?? 3;
}
};
});

Loading…
Cancel
Save