From ea7d8e012b54ed6b24df0da2676daae26f6fea32 Mon Sep 17 00:00:00 2001 From: Wylabb <77673282+Wylabb@users.noreply.github.com> Date: Sun, 14 Dec 2025 10:15:07 +0100 Subject: [PATCH] Fix server launcher connectivity by including Content.Packaging assembly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The server was failing to create ACZ packages for launcher clients because Content.Packaging.dll was not included in the packaged server deployments. This caused a FileNotFoundException when ContentMagicAczProvider attempted to call ClientPackaging.WriteResources at runtime. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- Content.Packaging/ServerPackaging.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Packaging/ServerPackaging.cs b/Content.Packaging/ServerPackaging.cs index cde9646422..f34069c52d 100644 --- a/Content.Packaging/ServerPackaging.cs +++ b/Content.Packaging/ServerPackaging.cs @@ -47,6 +47,7 @@ public static class ServerPackaging "Content.Server", "Content.Shared", "Content.Shared.Database", + "Content.Packaging", }; private static readonly List ServerExtraAssemblies = new()