diff --git a/osu.Server.DifficultyCalculator/Program.cs b/osu.Server.DifficultyCalculator/Program.cs index ed1962a..239c502 100644 --- a/osu.Server.DifficultyCalculator/Program.cs +++ b/osu.Server.DifficultyCalculator/Program.cs @@ -16,12 +16,12 @@ namespace osu.Server.DifficultyCalculator [Subcommand(typeof(BeatmapsStringCommand))] public class Program { - public static void Main(string[] args) + public static int Main(string[] args) { LegacyDifficultyCalculatorBeatmapDecoder.Register(); ServicePointManager.DefaultConnectionLimit = 128; - CommandLineApplication.Execute(args); + return CommandLineApplication.Execute(args); } public int OnExecute(CommandLineApplication app)