mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Merge pull request #2107 from ericrosenbaum/bugfix/boost-when-color
Fix BOOST whenColor hat
This commit is contained in:
commit
66ff92433e
1 changed files with 3 additions and 3 deletions
|
@ -1925,7 +1925,7 @@ class Scratch3BoostBlocks {
|
|||
* @return {boolean} - true if the tilt sensor is tilted past a threshold in the specified direction.
|
||||
*/
|
||||
whenColor (args) {
|
||||
return this._isColor(args.COLOR);
|
||||
return this._isColor(args);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1944,7 +1944,7 @@ class Scratch3BoostBlocks {
|
|||
* @private
|
||||
*/
|
||||
_isColor (args) {
|
||||
switch (args) {
|
||||
switch (args.COLOR) {
|
||||
case BoostColorLabel.ANY:
|
||||
if (Object.keys(BoostColor).find(key => BoostColor[key])
|
||||
.toLowerCase() !== this.getColor()) {
|
||||
|
@ -1956,7 +1956,7 @@ class Scratch3BoostBlocks {
|
|||
}
|
||||
break;
|
||||
default:
|
||||
return this.getColor() === color;
|
||||
return this.getColor() === args.COLOR;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue