mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
This kinda doesn’t make sense, but ok
This commit is contained in:
parent
963078210a
commit
328514ae63
1 changed files with 2 additions and 1 deletions
|
@ -109,7 +109,8 @@ class Scratch3OperatorsBlocks {
|
|||
}
|
||||
|
||||
contains (args) {
|
||||
return Cast.toString(args.STRING1).toLowerCase().includes(Cast.toString(args.STRING2).toLowerCase());
|
||||
return Cast.toString(args.STRING1).toLowerCase()
|
||||
.includes(Cast.toString(args.STRING2).toLowerCase());
|
||||
}
|
||||
|
||||
mod (args) {
|
||||
|
|
Loading…
Reference in a new issue