Skip to content

Commit

Permalink
feat(resourcepack): 强制多语言兼容支持繁体中文
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Jun 13, 2020
1 parent b60e77f commit 721a7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resourcepack/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default class ResourcePackManager extends BaseManager {
rep.from = [rep.from]
}
rep.from.forEach(key => {
all.push(key, 'jp/' + key, 'en/' + key)
all.push(key, 'chs_t/' + key, 'jp/' + key, 'en/' + key)
})
rep.from = all
}
Expand Down

0 comments on commit 721a7f6

Please sign in to comment.