forked from FoundKeyGang/FoundKey
Fix #4852
This commit is contained in:
parent
64aac9d6ad
commit
73641fd78d
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ export default Vue.extend({
|
|||
getScriptBlockList(type: string = null) {
|
||||
const list = [];
|
||||
|
||||
const blocks = blockDefs.filter(block => type === null || block.out === null || block.out === type);
|
||||
const blocks = blockDefs.filter(block => type === null || block.out === null || block.out === type || typeof block.out === 'number');
|
||||
|
||||
for (const block of blocks) {
|
||||
const category = list.find(x => x.category === block.category);
|
||||
|
|
Loading…
Reference in a new issue