From b50ce4ad20743ab700faa44203dd35c498ef9b8e Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 4 Feb 2019 08:43:48 +0100 Subject: [PATCH] scenes/boost: register the scene as the currentScene --- sonic-boost.love/scenes/subgame/sonic-boost/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sonic-boost.love/scenes/subgame/sonic-boost/init.lua b/sonic-boost.love/scenes/subgame/sonic-boost/init.lua index a712a18..075384d 100644 --- a/sonic-boost.love/scenes/subgame/sonic-boost/init.lua +++ b/sonic-boost.love/scenes/subgame/sonic-boost/init.lua @@ -7,6 +7,8 @@ function BoostLevel:new() self.controller = Controller() print("battle started") --self.background = love.graphics.newImage("assets/background/testbackground.png") + + self:register() end function BoostLevel:update(dt)