From 6016310b0933f3a81a91ba9167be8b138df74e04 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 18 Jul 2017 17:27:25 +0900 Subject: [PATCH] Use a better default for difficulty values --- osu.Game/Database/BeatmapDifficulty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Database/BeatmapDifficulty.cs b/osu.Game/Database/BeatmapDifficulty.cs index 87c651aa88..bc2ba0b981 100644 --- a/osu.Game/Database/BeatmapDifficulty.cs +++ b/osu.Game/Database/BeatmapDifficulty.cs @@ -10,7 +10,7 @@ namespace osu.Game.Database /// /// The default value used for all difficulty settings except and . /// - public const float DEFAULT_DIFFICULTY = 5; + public const float DEFAULT_DIFFICULTY = 0; [PrimaryKey, AutoIncrement] public int ID { get; set; }