From 07ed2cb227c795f13e7e54cfd7dd2c1b538e19f7 Mon Sep 17 00:00:00 2001 From: murdle Date: Fri, 2 May 2025 07:16:51 -0700 Subject: [PATCH] no need for this here --- RobloxLegacy/VersionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobloxLegacy/VersionManager.cs b/RobloxLegacy/VersionManager.cs index d64a14d..fd16f50 100644 --- a/RobloxLegacy/VersionManager.cs +++ b/RobloxLegacy/VersionManager.cs @@ -57,7 +57,7 @@ public class VersionManager : IDisposable private void WriteAppSettings() { - var appSettings = new Resource($"AppSettings.xml").GetBytes(); + var appSettings = new Resource("AppSettings.xml").GetBytes(); if (appSettings == null) throw new Exception("Failed to get AppSettings resource"); File.WriteAllBytesAsync(Path.Combine(GetVersionPath(_currentVersion), "AppSettings.xml"), appSettings);