mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
*facepalm*
This commit is contained in:
parent
28e61dbf48
commit
884e24f782
1 changed files with 3 additions and 3 deletions
|
@ -110,9 +110,9 @@ class Scratch3OperatorsBlocks {
|
|||
|
||||
contains (args) {
|
||||
const format = function (string) {
|
||||
return Cast.toString(string).toLowerCase()
|
||||
}
|
||||
return format(args.STRING1).includes(format(args.STRING2))
|
||||
return Cast.toString(string).toLowerCase();
|
||||
};
|
||||
return format(args.STRING1).includes(format(args.STRING2));
|
||||
}
|
||||
|
||||
mod (args) {
|
||||
|
|
Loading…
Reference in a new issue