Updated locking mechanism for Joker

pull/4/head
Ishaan Bhardwaj 2021-01-31 17:15:16 -05:00
parent 1a573c618c
commit a9fc3f211d
2 changed files with 5 additions and 1 deletions

View File

@ -25,6 +25,8 @@ function JokerGame:new()
self.lock_drop = true
self.lock_hard_drop = true
self.enable_hold = false
self.instant_soft_drop = false
self.instant_hard_drop = true
self.next_queue_length = 6
end

View File

@ -28,7 +28,9 @@ function ArcadeScoreAttack:new()
self.lock_drop = true
self.lock_hard_drop = true
self.enable_hard_drop = true
self.enable_hold = true
self.enable_hold = true
self.instant_soft_drop = false
self.instant_hard_drop = true
self.next_queue_length = 5
end