Skip to content

Commit

Permalink
Fix bad judgment counting in Gameplay Lua for race conditions
Browse files Browse the repository at this point in the history
nice refactoring skillz
  • Loading branch information
poco0317 committed Sep 15, 2019
1 parent 4402db8 commit 35353c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -246,7 +246,7 @@ local t =
tDiff = msg.WifePBDifferential
end
jdgCur = msg.Judgment
queuecommand(self, "SpottedOffset")
self:playcommand("SpottedOffset")
end
}

@@ -561,7 +561,7 @@ local e =
if enabledErrorBar == 1 then
if dvCur ~= nil then
currentbar = ((currentbar) % barcount) + 1
queuecommand(ingots[currentbar], "UpdateErrorBar") -- Update the next bar in the queue
ingots[currentbar]:playcommand("UpdateErrorBar") -- Update the next bar in the queue
end
end
end,

0 comments on commit 35353c4

Please sign in to comment.