Skip to content

Commit

Permalink
dont update banners while fast moving
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Nov 22, 2018
1 parent a6d788f commit 92e5359
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -485,13 +485,24 @@ t[#t + 1] =
)
end,
MortyFartsCommand = function(self)
if not INPUTFILTER:IsBeingPressed("tab") then -- dont update when fast moving
if song then
self:LoadFromSong(song)
else
local group = SCREENMAN:GetTopScreen():GetMusicWheel():GetSelectedSection()
self:LoadFromSongGroup(group)
end
self:scaletoclipped(capWideScale(get43size(384), 384), capWideScale(get43size(120), 120))
end
end,
PlayingSampleMusicMessageCommand=function(self)
if song then
self:LoadFromSong(song)
else
local group = SCREENMAN:GetTopScreen():GetMusicWheel():GetSelectedSection()
self:LoadFromSongGroup(group)
end
self:scaletoclipped(capWideScale(get43size(384), 384), capWideScale(get43size(120), 120))
self:scaletoclipped(capWideScale(get43size(384), 384), capWideScale(get43size(120), 120))
end,
MilkyTartsCommand=function(self)
self:queuecommand("MortyFarts") -- for pack banners
Expand Down

0 comments on commit 92e5359

Please sign in to comment.