Renamed Marathon AX4 to Survival AX, among other things.

This commit is contained in:
Joe Zeng
2020-12-03 00:26:36 -05:00
committed by Joe Z
parent 0f3883e18d
commit 79a25c3954
11 changed files with 285 additions and 73 deletions

View File

@@ -4,7 +4,7 @@ local Ruleset = require 'tetris.rulesets.ruleset'
local SRS = Ruleset:extend()
SRS.name = "Ti-World"
SRS.hash = "Bad I-kicks"
SRS.hash = "StandardTI"
SRS.world = true
SRS.colourscheme = {
I = "C",
@@ -192,12 +192,6 @@ function SRS:onPieceRotate(piece, grid)
end
end
function SRS:get180RotationValue()
if config.gamesettings.world_reverse == 1 then
return 1
else
return 3
end
end
function SRS:get180RotationValue() return 3 end
return SRS