diff --git a/BGAnimations/ScreenGameplay overlay/TrackExScoreJudgments.lua b/BGAnimations/ScreenGameplay overlay/TrackExScoreJudgments.lua index 27d5d47c6..76b16410e 100644 --- a/BGAnimations/ScreenGameplay overlay/TrackExScoreJudgments.lua +++ b/BGAnimations/ScreenGameplay overlay/TrackExScoreJudgments.lua @@ -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 diff --git a/Graphics/Player judgment.lua b/Graphics/Player judgment.lua index dd31f4708..cc8a07021 100755 --- a/Graphics/Player judgment.lua +++ b/Graphics/Player judgment.lua @@ -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