Skip to content

Commit

Permalink
whar
Browse files Browse the repository at this point in the history
  • Loading branch information
GuglioIsStupid committed May 17, 2024
1 parent bd05536 commit b7cb004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/states/game/Gameplay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ function Gameplay:normalizeSVs()
break
end

if (sv.startTime < timingPoint.StartTime) then
if (sv.startTime <= timingPoint.StartTime) then
local multiplier = (sv.Multiplier or 0) * (currentBpm / baseBpm)

if not currentAdjustedSvMultiplier then
Expand Down Expand Up @@ -496,7 +496,6 @@ function Gameplay:normalizeSVs()
currentSvIndex = currentSvIndex + 1
end

self.bpmAffectsScrollVelocity = false
self.initialScrollVelocity = initialSvMultiplier or 1
self.sliderVelocities = normalizedScrollVelocities
end
Expand Down Expand Up @@ -1110,6 +1109,7 @@ function Gameplay:generateBeatmap(chartType, songPath, folderPath, diffName)
Parsers[chartType].load(songPath, folderPath, diffName)

--self:normalizeSVs()
--self:SVFactor()

self.M_folderPath = folderPath -- used for mod scripting
Modscript.vars = {sprites={}} -- reset modscript vars
Expand Down

0 comments on commit b7cb004

Please sign in to comment.