Secret inputs fix

pull/13/head
Ishaan Bhardwaj 2021-01-08 13:59:42 -05:00
parent 1a75d983dc
commit 5076adf022
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ function ModeSelectScene:onInputPress(e)
playSE("cursor_lr")
elseif e.input == "menu_back" or e.scancode == "delete" or e.scancode == "backspace" then
scene = TitleScene()
else
elseif e.input then
self.secret_inputs[e.input] = true
end
end