From d119bf83b548588ef666e2fed4fbd013606251dd Mon Sep 17 00:00:00 2001 From: SirConstance Date: Sun, 31 Aug 2025 11:45:09 +0200 Subject: [PATCH] Last Check --- .../MareSynchronosServer/Hubs/MareHub.Chat.cs | 2 +- .../MareSynchronosServer/Hubs/MareHub.cs | 2 +- .../MareSynchronosServices/Discord/MareModule.cs | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.Chat.cs b/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.Chat.cs index 19eaefc..4e9b7ed 100644 --- a/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.Chat.cs +++ b/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.Chat.cs @@ -34,7 +34,7 @@ public partial class MareHub if (group == null || sender == null) return; // TODO: Add and check chat permissions - if (group.Alias?.Equals("Loporrit", StringComparison.Ordinal) ?? false) + if (group.Alias?.Equals("Umbra", StringComparison.Ordinal) ?? false) { await Clients.Caller.Client_ReceiveServerMessage(MessageSeverity.Warning, $"Chat is disabled for syncshell '{dto.GroupAliasOrGID}'.").ConfigureAwait(false); return; diff --git a/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.cs b/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.cs index f38a0cf..2ce5931 100644 --- a/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.cs +++ b/MareSynchronosServer/MareSynchronosServer/Hubs/MareHub.cs @@ -80,7 +80,7 @@ public partial class MareHub : Hub, IMareHub dbUser.LastLoggedIn = DateTime.UtcNow; await DbContext.SaveChangesAsync().ConfigureAwait(false); - await Clients.Caller.Client_ReceiveServerMessage(MessageSeverity.Information, "Welcome to Loporrit, Current Online Users: " + _systemInfoService.SystemInfoDto.OnlineUsers).ConfigureAwait(false); + await Clients.Caller.Client_ReceiveServerMessage(MessageSeverity.Information, "Welcome to Umbra, Current Online Users: " + _systemInfoService.SystemInfoDto.OnlineUsers).ConfigureAwait(false); return new ConnectionDto(new UserData(dbUser.UID, string.IsNullOrWhiteSpace(dbUser.Alias) ? null : dbUser.Alias)) { diff --git a/MareSynchronosServer/MareSynchronosServices/Discord/MareModule.cs b/MareSynchronosServer/MareSynchronosServices/Discord/MareModule.cs index bd10600..5eed682 100644 --- a/MareSynchronosServer/MareSynchronosServices/Discord/MareModule.cs +++ b/MareSynchronosServer/MareSynchronosServices/Discord/MareModule.cs @@ -76,7 +76,7 @@ public class MareModule : InteractionModuleBase } else { - // Loporrit - Register immediately + // Umbra - Register immediately var user = new User(); var hasValidUid = false; @@ -121,7 +121,7 @@ public class MareModule : InteractionModuleBase + Environment.NewLine + Environment.NewLine + $"**{computedHash}**" + Environment.NewLine + Environment.NewLine - + "Enter this key in Loporrit Sync and hit Connect / Reconnect." + + "Enter this key in Umbra Sync and hit Connect / Reconnect." + Environment.NewLine + "Have fun."); @@ -209,7 +209,7 @@ public class MareModule : InteractionModuleBase } } - // Loporrit - Disable /verify command + // Umbra - Disable /verify command //[SlashCommand("verify", "Finishes the registration process for the Mare Synchronos server of this Discord")] public async Task Verify() { @@ -246,7 +246,7 @@ public class MareModule : InteractionModuleBase } } - // Loporrit - Disable /verify command + // Umbra - Disable /verify command //[SlashCommand("verify_relink", "Finishes the relink process for your user on the Mare Synchronos server of this Discord")] public async Task VerifyRelink() { @@ -766,7 +766,7 @@ public class MareModule : InteractionModuleBase + Environment.NewLine + Environment.NewLine + $"**{computedHash}**" + Environment.NewLine + Environment.NewLine - + "Enter this key in Loporrit Sync and hit save to connect to the service."); + + "Enter this key in Umbra Sync and hit save to connect to the service."); await db.Auth.AddAsync(auth).ConfigureAwait(false); await db.SaveChangesAsync().ConfigureAwait(false);