Browse Source

Merge branch 'master' into 'release'

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

See merge request Isleward/isleward!620
tags/v0.12.0.6
Big Bad Waffle 1 year ago
parent
commit
195f01f72b
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