Skip to content

Commit

Permalink
revert cause im silly billy
Browse files Browse the repository at this point in the history
  • Loading branch information
jwklong authored Jan 13, 2025
1 parent 340905b commit ab89912
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/engine/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -1940,7 +1940,7 @@ class Runtime extends EventEmitter {
}
} else {
valueName = placeholder;
shadowType = argInfo.shadow || ((argTypeInfo.shadow && argTypeInfo.shadow.type) || null);
shadowType = (argTypeInfo.shadow && argTypeInfo.shadow.type) || null;
fieldName = (argTypeInfo.shadow && argTypeInfo.shadow.fieldName) || null;
}
// TODO: Allow fillIn to work with non-shadow.
Expand Down
3 changes: 1 addition & 2 deletions src/extensions/jwPsychic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,7 @@ class Extension {
blockType: BlockType.COMMAND,
arguments: {
BOOLEAN: {
type: ArgumentType.BOOLEAN,
shadow: 'operator_falseBoolean'
type: ArgumentType.BOOLEAN
}
},
filter: [TargetType.SPRITE]
Expand Down

0 comments on commit ab89912

Please sign in to comment.