Remove Username Bind

This commit is contained in:
RedBigz 2024-06-01 22:37:28 +10:00
parent c655b9de01
commit d8c2617c66

View File

@ -15,13 +15,11 @@ public class Plugin : BaseUnityPlugin
Harmony harmony;
public static ConfigEntry<string> URL;
public static ConfigEntry<string> Username;
private void Awake()
{
// Config
URL = Config.Bind("Networking", "WebsocketURL", "ws://127.0.0.1:3000/", "The ws[s]:// URL.");
Username = Config.Bind("Networking", "Username", "Guest", "Your display name.");
// Plugin startup logic
Logger.LogInfo($"Spooktube has loaded.");