From 3f63d6d6db873ef641875ac0ce08075a13d26a9e Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 15 Oct 2023 01:37:53 +0200 Subject: [PATCH 1/2] Fix whitelistadd requiring server restart (#218) Pro Webedit --- Content.Server/Whitelist/WhitelistCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Whitelist/WhitelistCommands.cs b/Content.Server/Whitelist/WhitelistCommands.cs index 44c6c09bb3..892460fd87 100644 --- a/Content.Server/Whitelist/WhitelistCommands.cs +++ b/Content.Server/Whitelist/WhitelistCommands.cs @@ -45,7 +45,7 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args) if (player.TryGetPlayerDataByUsername(name, out var playerData) && player.TryGetSessionByUsername(name, out var session)) { - playerData.ContentData()!.Whitelisted = false; + playerData.ContentData()!.Whitelisted = true; playtime.SendWhitelistCached(session); } From bc21367c8c61437e18177f0c8e0156f1f0152a2a Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 14 Oct 2023 23:42:43 +0000 Subject: [PATCH 2/2] Automatic Changelog Update (#218) --- Resources/Changelog/DeltaVChangelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index cde745aae8..5dc3b3231f 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -491,3 +491,9 @@ Entries: message: bees can now be put in inventory and ground up as a beverage/ingredient id: 67 time: '2023-09-28T17:52:08.0000000+00:00' +- author: DebugOk + changes: + - type: Fix + message: Whitelists no longer require server restarts + id: 68 + time: '2023-10-14T23:37:53.0000000+00:00'