소스 검색

fixes #1476

tags/v0.7.0^2
Shaun 4 년 전
부모
커밋
911c76cbb1
2개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. +0
    -2
      src/client/ui/templates/options/options.js
  2. +1
    -1
      src/client/ui/templates/workbench/workbench.js

+ 0
- 2
src/client/ui/templates/options/options.js 파일 보기

@@ -197,8 +197,6 @@ define([
this.onToggleQualityIndicators(config.qualityIndicators);
this.onToggleUnusableIndicators(config.unusableIndicators);
this.onToggleLastChannel(config.rememberChatChannel);

console.log(config);
this.onVolumeChange({
soundType: 'sound',


+ 1
- 1
src/client/ui/templates/workbench/workbench.js 파일 보기

@@ -186,7 +186,7 @@ define([

const items = window.player.inventory.items
.filter(item => {
const isValidItem = allowedItemIds.find(f => f === item.id);
const isValidItem = allowedItemIds.some(f => f === item.id);

return isValidItem;
});


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