apply tweak

pull/12880/head
Dominic Gannaway 2 years ago
parent 2c5f0e2975
commit c75a625ab1

@ -590,7 +590,7 @@ function process_effects(effect, collected_effects) {
var flags = current_effect.f;
// TODO: we probably don't need to check for destroyed as it shouldn't be encountered?
var is_active = (flags & (DESTROYED | INERT)) === 0;
var is_branch = flags & BRANCH_EFFECT;
var is_branch = (flags & BRANCH_EFFECT) !== 0;
var is_clean = (flags & CLEAN) !== 0;
var child = current_effect.first;

Loading…
Cancel
Save