diff --git a/core/src/avm2/object.rs b/core/src/avm2/object.rs index 60e1f0d08..465470024 100644 --- a/core/src/avm2/object.rs +++ b/core/src/avm2/object.rs @@ -647,7 +647,7 @@ pub trait TObject<'gc>: 'gc + Collect + Debug + Into> + Clone + Copy if self.has_own_property(name) { true } else if let Some(proto) = self.proto() { - proto.has_own_property(name) + proto.has_property(name) } else { false }