Add ShowRules commmand (#5908)

This commit is contained in:
ShadowCommander
2021-12-28 23:31:18 -08:00
committed by GitHub
parent 9a0055a0ef
commit ca8d673fad
6 changed files with 122 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ using Content.Server.DeviceNetwork;
using Content.Server.EUI;
using Content.Server.Holiday;
using Content.Server.Holiday.Interfaces;
using Content.Server.Info;
using Content.Server.Maps;
using Content.Server.Module;
using Content.Server.MoMMI;
@@ -57,6 +58,7 @@ namespace Content.Server.IoC
IoCManager.Register<IAfkManager, AfkManager>();
IoCManager.Register<IGameMapManager, GameMapManager>();
IoCManager.Register<IGamePrototypeLoadManager, GamePrototypeLoadManager>();
IoCManager.Register<RulesManager, RulesManager>();
}
}
}