Update RT to 268.0.0

This commit is contained in:
PJB3005 2025-11-16 20:34:33 +01:00
parent 6347ddffb8
commit ca2bb9dcff
No known key found for this signature in database
14 changed files with 44 additions and 77 deletions

View file

@ -2,9 +2,9 @@ namespace Content.Server;
internal static class ServerContentIoC
{
public static void Register()
public static void Register(IDependencyCollection dependencies)
{
// DEVNOTE: IoCManager registrations for the server go here and only here.
IoCManager.Register<LocalHostConGroup>();
dependencies.Register<LocalHostConGroup>();
}
}