diff --git a/src/dsectoreffect.cpp b/src/dsectoreffect.cpp index 80a2cceac..b1d517fe7 100644 --- a/src/dsectoreffect.cpp +++ b/src/dsectoreffect.cpp @@ -79,12 +79,6 @@ void DSectorEffect::Serialize(FSerializer &arc) DEFINE_FIELD(DSectorEffect, m_Sector) -DEFINE_ACTION_FUNCTION(DSectorEffect, GetSector) -{ - PARAM_SELF_PROLOGUE(DSectorEffect); - ACTION_RETURN_POINTER(self->m_Sector); -} - IMPLEMENT_CLASS(DMover, true, true) IMPLEMENT_POINTERS_START(DMover) diff --git a/wadsrc/static/zscript/base.txt b/wadsrc/static/zscript/base.txt index 7462063e7..dc218dc16 100644 --- a/wadsrc/static/zscript/base.txt +++ b/wadsrc/static/zscript/base.txt @@ -795,8 +795,6 @@ struct StringStruct native class SectorEffect : Thinker native { native protected Sector m_Sector; - - native clearscope Sector GetSector(); } class Mover : SectorEffect native