Fix routine theme errors; do not force typical pump options behavior
This commit is contained in:
@@ -43,26 +43,22 @@ function FormatNumSongsPlayed( num )
|
||||
end
|
||||
|
||||
function JudgmentTransformCommand( self, params )
|
||||
local x = 0
|
||||
local y = -30
|
||||
if params.bReverse then y = y * -1 end
|
||||
-- This makes no sense and wasn't even being used due to misspelling.
|
||||
-- if bCentered then y = y * 2 end
|
||||
self:x( x )
|
||||
self:x( 0 )
|
||||
self:y( y )
|
||||
end
|
||||
|
||||
function JudgmentTransformSharedCommand( self, params )
|
||||
local x = -120
|
||||
local y = -30
|
||||
if params.bReverse then y = 30 end
|
||||
if params.Player == PLAYER_1 then x = 120 end
|
||||
self:x( x )
|
||||
self:x( 0 )
|
||||
self:y( y )
|
||||
end
|
||||
|
||||
function ComboTransformCommand( self, params )
|
||||
local x = 0
|
||||
local y = 30
|
||||
if params.bReverse then y = y * -1 end
|
||||
|
||||
@@ -73,7 +69,7 @@ function ComboTransformCommand( self, params )
|
||||
y = y + 40
|
||||
end
|
||||
end
|
||||
self:x( x )
|
||||
self:x( 0 )
|
||||
self:y( y )
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user