Skip to content

Commit 0dda180

Browse files
Update Updater.cs
1 parent fb84717 commit 0dda180

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

Flames/Server/Maintenance/Updater.cs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public static class Updater
2828
{
2929

3030
public static string SourceURL = "https://github.com/RandomStrangers/Fire/";
31-
public const string BaseURL = "https://github.com/RandomStrangers/Fire/blob/Flame/";
32-
public const string UploadsURL = "https://github.com/RandomStrangers/Fire/tree/Flame/Uploads";
33-
public const string UpdatesURL = "https://github.com/RandomStrangers/Fire/raw/Flame/Uploads/";
31+
public const string BaseURL = "https://github.com/RandomStrangers/Fire/blob/debug/";
32+
public const string UploadsURL = "https://github.com/RandomStrangers/Fire/tree/debug/Uploads";
33+
public const string UpdatesURL = "https://github.com/RandomStrangers/Fire/raw/debug/Uploads/";
3434
public static string WikiURL = "https://github.com/ClassiCube/MCGalaxy/wiki/";
3535
#if CORE
3636
public const string CurrentVersionURL = UpdatesURL + "dev.txt";
@@ -140,7 +140,10 @@ public static void PerformUpdate(bool GUI)
140140

141141
public static void DeleteFiles(params string[] paths)
142142
{
143-
foreach (string path in paths) { AtomicIO.TryDelete(path); }
143+
foreach (string path in paths)
144+
{
145+
AtomicIO.TryDelete(path);
146+
}
144147
}
145148
}
146149
}

0 commit comments

Comments
 (0)