Appease the resharper gods.

This commit is contained in:
smoogipooo 2017-03-17 15:45:54 +09:00
parent 12de3f6657
commit f48af91686
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Samples;
using osu.Game.Modes.Objects.Types;
using System;
@ -68,7 +67,7 @@ public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficul
{
base.ApplyDefaults(timing, difficulty);
Velocity = (timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier) / 1000;
Velocity = timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier / 1000;
TickTimeDistance = timing.BeatLengthAt(StartTime);
if (difficulty.SliderTickRate == 3)