From 0ffe28a7efd9a7aa2adb69d50688ecff2c60c8c8 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj <59454579+SashLilac@users.noreply.github.com> Date: Sat, 14 Nov 2020 09:54:57 -0500 Subject: [PATCH] Moved Phantom Mania N to main game --- tetris/modes/phantom_mania_n.lua | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 tetris/modes/phantom_mania_n.lua diff --git a/tetris/modes/phantom_mania_n.lua b/tetris/modes/phantom_mania_n.lua deleted file mode 100644 index e39d03d..0000000 --- a/tetris/modes/phantom_mania_n.lua +++ /dev/null @@ -1,22 +0,0 @@ -local PhantomManiaGame = require 'tetris.modes.phantom_mania' - -local PhantomManiaNGame = PhantomManiaGame:extend() - -PhantomManiaNGame.name = "Phantom Mania N" -PhantomManiaNGame.hash = "PhantomManiaN" -PhantomManiaNGame.tagline = "The old mode from Nullpomino, for Ti-ARS and SRS support." - -function PhantomManiaNGame:new() - PhantomManiaNGame.super:new() - - self.SGnames = { - "M1", "M2", "M3", "M4", "M5", "M6", "M7", "M8", "M9", - "M10", "M11", "M12", "M13", "M14", "M15", "M16", "M17", "M18", - "GM" - } - - self.next_queue_length = 3 - self.enable_hold = true -end - -return PhantomManiaNGame