fix injections, fix logging

This commit is contained in:
CWX
2025-01-12 16:53:46 +00:00
parent a8ef6655d7
commit c171bfe76c
5 changed files with 5 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@ using Core.Utils;
namespace Core.Callbacks;
[Injectable(InjectableTypeOverride = typeof(OnUpdate), TypePriority = OnUpdateOrder.DialogCallbacks)]
[Injectable(InjectableTypeOverride = typeof(DialogueCallbacks))]
public class DialogueCallbacks : OnUpdate
{
protected HashUtil _hashUtil;
+1
View File
@@ -14,6 +14,7 @@ using Core.Utils;
namespace Core.Callbacks;
[Injectable(InjectableTypeOverride = typeof(OnUpdate), TypePriority = OnUpdateOrder.InsuranceCallbacks)]
[Injectable(InjectableTypeOverride = typeof(InsuranceCallbacks))]
public class InsuranceCallbacks : OnUpdate
{
protected InsuranceController _insuranceController;
+1
View File
@@ -14,6 +14,7 @@ namespace Core.Callbacks;
[Injectable(InjectableTypeOverride = typeof(OnLoad), TypePriority = OnLoadOrder.RagfairCallbacks)]
[Injectable(InjectableTypeOverride = typeof(OnUpdate), TypePriority = OnUpdateOrder.RagfairCallbacks)]
[Injectable(InjectableTypeOverride = typeof(RagfairCallbacks))]
public class RagfairCallbacks : OnLoad, OnUpdate
{
protected HttpResponseUtil _httpResponseUtil;
+1
View File
@@ -7,6 +7,7 @@ using Core.Models.Spt.Config;
using Core.Models.Spt.Weather;
using Core.Servers;
using Core.Services;
using ILogger = Core.Models.Utils.ILogger;
namespace Core.Controllers;
+1
View File
@@ -6,6 +6,7 @@ using Core.Models.Enums;
using Core.Models.Spt.Config;
using Core.Servers;
using Core.Utils;
using ILogger = Core.Models.Utils.ILogger;
namespace Core.Services;