소스 검색

Added fixes for trident and bite spell type

tags/v0.14.1.1^2
Shaun 2 달 전
부모
커밋
fc85dc1d26
1개의 변경된 파일14개의 추가작업 그리고 2개의 파일을 삭제
  1. +14
    -2
      src/server/fixes/fixes.js

+ 14
- 2
src/server/fixes/fixes.js 파일 보기

@@ -183,7 +183,13 @@ module.exports = {
});

items
.filter(i => i.name === 'Princess Morgawsa\'s Trident' && i.type !== 'Trident')
.filter(i =>
i.name === 'Princess Morgawsa\'s Trident' &&
(
i.type !== 'Trident' ||
i.spell.type !== 'projectile'
)
)
.forEach(i => {
i.type = 'Trident';
i.requires[0].stat = 'int';
@@ -198,7 +204,13 @@ module.exports = {
});

items
.filter(i => i.name === 'Steelclaw\'s Bite' && i.type !== 'Curved Dagger')
.filter(i =>
i.name === 'Steelclaw\'s Bite' &&
(
i.type !== 'Curved Dagger' ||
i.spell.type !== 'melee'
)
)
.forEach(i => {
i.type = 'Curved Dagger';
i.requires[0].stat = 'dex';


불러오는 중...
취소
저장