mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 13:11:12 -05:00
Check that filters
is truthy
This commit is contained in:
parent
0556bcfe0d
commit
34aac1b158
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ public class Block extends Sprite {
|
|||
}
|
||||
|
||||
public function showRunFeedback():void {
|
||||
if (filters.length > 0) {
|
||||
if (filters && filters.length > 0) {
|
||||
for each (var f:* in filters) {
|
||||
if (f is GlowFilter) return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue