avm1: Fix `SuperObject::get_local_stored`

It should return `None` in order to continue further walking on the
prototype chain.
This commit is contained in:
relrelb 2021-10-09 01:33:12 +03:00 committed by Mike Welsh
parent c5ad8e76ee
commit 1772def6e6
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ impl<'gc> TObject<'gc> for SuperObject<'gc> {
_name: impl Into<AvmString<'gc>>,
_activation: &mut Activation<'_, 'gc, '_>,
) -> Option<Value<'gc>> {
Some(Value::Undefined)
None
}
fn set_local(