From e78df19112c2473541a3e46e065ff3db09299adc Mon Sep 17 00:00:00 2001 From: Kirby703 <14858059+Kirby703@users.noreply.github.com> Date: Sat, 11 Sep 2021 22:39:20 -0400 Subject: [PATCH] made mode extensible --- tetris/modes/phantom_mania2.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/phantom_mania2.lua b/tetris/modes/phantom_mania2.lua index b5082c0..c1e7421 100644 --- a/tetris/modes/phantom_mania2.lua +++ b/tetris/modes/phantom_mania2.lua @@ -179,7 +179,7 @@ function PhantomMania2Game:onPieceLock(piece, cleared_row_count) end function PhantomMania2Game:onHold() - self.super.onHold() + self.super:onHold() self.hold_age = 0 end