From 66041ff511d29b4bc945895afb09bf23e4eaa292 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 29 Apr 2019 16:37:01 +0200 Subject: [PATCH] examples/gameplay: fix an oops in the wall actor --- examples/gameplay/plateform/actors/wall.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gameplay/plateform/actors/wall.lua b/examples/gameplay/plateform/actors/wall.lua index 12c109d..3fa11bc 100644 --- a/examples/gameplay/plateform/actors/wall.lua +++ b/examples/gameplay/plateform/actors/wall.lua @@ -2,7 +2,7 @@ local Base = require "gamecore.modules.world.actors.actor2D" local Wall = Base:extend() function Wall:new(world, x, y, w, h) - Parent.super.new(self, world, "wall", x, y, w, h, true) + Wall.super.new(self, world, "wall", x, y, w, h, true) end return Wall