summaryrefslogtreecommitdiff
path: root/NetClient.cs
diff options
context:
space:
mode:
authorSarah Bradley <git@sarahduck.ca>2023-12-17 23:31:40 -0800
committerSarah Bradley <git@sarahduck.ca>2023-12-17 23:31:40 -0800
commitfc3874657348bde6ce7e3fab625c92dfec91baaa (patch)
tree63ddf1864d5c2fb82be156621c6a7225819ef233 /NetClient.cs
parent217c93639fc6dee3222e0a3724dd5ed67b34f412 (diff)
Added Window Scaling, custom mouse, and Neko nametags
Diffstat (limited to 'NetClient.cs')
-rw-r--r--NetClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/NetClient.cs b/NetClient.cs
index f7d14a1..ce7d8fe 100644
--- a/NetClient.cs
+++ b/NetClient.cs
@@ -6,7 +6,7 @@ namespace OnekoOnline.Net;
class Client
{
- public readonly string UserName = OnekoOnline.Config.GetValue("UserName", "Oneko");
+ public static readonly string UserName = OnekoOnline.Config.GetValue("UserName", "Oneko");
public int Id {get; private set;} = -1;
public bool Connected => NetClient?.ConnectedPeersCount > 0 && Id != -1;