Browse Source

chore: added an item fix to make candy corn non mailable

tags/v0.8.2.2^2
Shaun 3 years ago
parent
commit
c74fe40097
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      src/server/fixes/fixes.js

+ 6
- 0
src/server/fixes/fixes.js View File

@@ -36,6 +36,12 @@ module.exports = {
i.cdMax = 86;
});

items
.filter(i => i.name === 'Candy Corn')
.forEach(i => {
i.noDrop = true;
});

items
.filter(i => (i.name === 'Elixir of Infatuation'))
.forEach(function (i) {


Loading…
Cancel
Save