Update Branding

This commit is contained in:
RedBigz 2024-06-10 16:19:11 +10:00
parent 972fb40395
commit 0cb2ee2c56

View File

@ -29,10 +29,10 @@ public class Plugin : BaseUnityPlugin
URL = Config.Bind("Networking", "WebsocketURL", "wss://spook.redbigz.com/api/upload", "The ws[s]:// URL.");
// Plugin startup logic
Logger.LogInfo($"Spooktube has loaded.");
Logger.LogInfo($"SpookTubeEX has loaded.");
// Create patches
harmony = new("com.redbigz.SpookedTubePatch");
harmony = new("com.redbigz.SpookTubeEXPatch");
harmony.PatchAll();
}
@ -40,7 +40,7 @@ public class Plugin : BaseUnityPlugin
{
harmony.UnpatchSelf();
Logger.LogInfo($"Spooktube has unloaded."); // Unpatch everything
Logger.LogInfo($"SpookTubeEX has unloaded."); // Unpatch everything
}
}