diff --git a/src/dct/Theater.lua b/src/dct/Theater.lua index e3a6d9fa..d7b75664 100644 --- a/src/dct/Theater.lua +++ b/src/dct/Theater.lua @@ -145,8 +145,8 @@ end function Theater:postinitSystems() for _, sys in pairs(self._systems) do - if type(sys.initpost) == "function" then - sys:initpost(self) + if type(sys.postinit) == "function" then + sys:postinit(self) end end end