fix(game): add skills api to the service provider
1 files changed, 3 insertions(+), 1 deletions(-) M Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs
M Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs => Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs +3 -1
@@ 113,11 113,13 @@ public static class ServiceCollectionExtensions serviceCollection .AddTransient<DialogHandler>() .AddTransient<NostaleMapApi>() .AddTransient<NostaleSkillsApi>() .AddTransient<NostaleChatApi>() .AddTransient<UnsafeMapApi>() .AddTransient<UnsafeInventoryApi>() .AddTransient<UnsafeMateApi>() .AddTransient<UnsafeMateSkillsApi>() .AddTransient<NostaleChatApi>() .AddTransient<UnsafeSkillsApi>(); serviceCollection