Skip to content

Commit

Permalink
Don't shift down judgment graphic in FA+ mode
Browse files Browse the repository at this point in the history
  • Loading branch information
teejusb committed Jun 4, 2022
1 parent 3784d21 commit dfd2dfe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ return Def.Actor{
end,
JudgmentMessageCommand=function(self, params)
if params.Player ~= player then return end

if IsAutoplay(player) then return end

local count_updated = false
Expand Down
8 changes: 6 additions & 2 deletions Graphics/Player judgment.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ return Def.ActorFrame{
end
-- We don't need to adjust the top window otherwise.
else
-- Everything outside of W1 needs to be shifted down a row.
frame = frame + 1
-- Everything outside of W1 needs to be shifted down a row if not in FA+ mode.
-- Some people might be using 2x7s in FA+ mode (by copying ITG graphics to FA+).
-- Don't need to shift in that case.
if mode ~= "FA+" then
frame = frame + 1
end
end
end

Expand Down

0 comments on commit dfd2dfe

Please sign in to comment.