mirror of
https://github.com/SashLilac/cambridge-modpack.git
synced 2024-11-16 14:59:01 -06:00
18 lines
362 B
Lua
18 lines
362 B
Lua
local SRS = require 'tetris.rulesets.standard'
|
|
|
|
local DS = SRS:extend()
|
|
|
|
DS.name = "DS-World"
|
|
DS.hash = "DS-World"
|
|
|
|
DS.are = false
|
|
|
|
function DS:onPieceDrop(piece) piece.lock_delay = 0 end
|
|
function DS:onPieceMove(piece) piece.lock_delay = 0 end
|
|
function DS:onPieceRotate(piece) piece.lock_delay = 0 end
|
|
|
|
function DS:get180RotationValue()
|
|
return 3
|
|
end
|
|
|
|
return DS |