Browse Source

Merge branch '1459-asc-lvlreq' into 'master'

Don't show items that are max level with level requirement reduction in Increase Level crafting

Closes #1459

See merge request Isleward/isleward!572
merge-requests/572/merge
kckckc 2 years ago
parent
commit
7858e584e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/config/recipes/enchanting.js

+ 1
- 1
src/server/config/recipes/enchanting.js View File

@@ -45,7 +45,7 @@ module.exports = [{
withProps: ['slot'],
withoutProps: ['noAugment'],
checks: [
item => item.level && item.level < consts.maxLevel
item => item.level && (item.originalLevel || item.level) < consts.maxLevel
]
}],
craftAction: relevel


Loading…
Cancel
Save