From fa3f428bb2ce19db5ee4b08bf52cadcdaff2ab78 Mon Sep 17 00:00:00 2001 From: Egor Dvachevskiy Date: Thu, 31 Mar 2022 08:29:24 +0300 Subject: [PATCH] RuntimeIds. --- .idea/.idea.osu-lazer-dll-patcher/.idea/vcs.xml | 6 ++++++ osu-lazer-dll-patcher/Program.cs | 4 +++- osu-lazer-dll-patcher/osu-lazer-dll-patcher.csproj | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .idea/.idea.osu-lazer-dll-patcher/.idea/vcs.xml diff --git a/.idea/.idea.osu-lazer-dll-patcher/.idea/vcs.xml b/.idea/.idea.osu-lazer-dll-patcher/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.osu-lazer-dll-patcher/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/osu-lazer-dll-patcher/Program.cs b/osu-lazer-dll-patcher/Program.cs index e6fb518..ee286eb 100644 --- a/osu-lazer-dll-patcher/Program.cs +++ b/osu-lazer-dll-patcher/Program.cs @@ -1,9 +1,10 @@ using dnlib.DotNet; +using System.Linq; using HarmonyLib; var defaultLazerPath = Environment.ExpandEnvironmentVariables(@"%LOCALAPPDATA%\osulazer"); -if (!Directory.Exists(defaultLazerPath)) +if (!Directory.Exists(defaultLazerPath) && args.Length < 1) { Console.WriteLine("Please, drag & drop osu.Game.dll file."); Environment.Exit(1); @@ -30,6 +31,7 @@ multiField.Operand = "https://lazer.dhcpcd.xyz/multiplayer"; hostField.Operand = "https://lazer.dhcpcd.xyz"; + module.Write(osuPathDll); Console.WriteLine("Done!~"); Console.WriteLine($"osu!lazer location: {Environment.ExpandEnvironmentVariables(@"%LOCALAPPDATA%\osulazer")}"); diff --git a/osu-lazer-dll-patcher/osu-lazer-dll-patcher.csproj b/osu-lazer-dll-patcher/osu-lazer-dll-patcher.csproj index f99d3f0..9dbf1bc 100644 --- a/osu-lazer-dll-patcher/osu-lazer-dll-patcher.csproj +++ b/osu-lazer-dll-patcher/osu-lazer-dll-patcher.csproj @@ -5,6 +5,7 @@ net6.0 osu_lazer_dll_patcher enable + win-x64;linux-x64;osx-x64 enable -- GitLab