From 001b0f9fb35913d00ff3d0ae5e3114151053b127 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Tue, 7 Jan 2025 04:28:37 -0500 Subject: [PATCH] Fix some errors --- Core/Controllers/AchievementController.cs | 4 +++- Core/Controllers/BuildController.cs | 2 ++ Core/Controllers/CustomizationController.cs | 2 ++ Core/Controllers/DialogueController.cs | 1 + Core/Controllers/GameController.cs | 1 + Core/Controllers/HealthController.cs | 1 + Core/Controllers/NoteController.cs | 1 + Core/Controllers/PrestigeController.cs | 1 + Core/Controllers/RepairController.cs | 1 + Core/Controllers/TradeController.cs | 1 + Core/Controllers/TraderController.cs | 1 + Core/Controllers/WishlistController.cs | 1 + 12 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Core/Controllers/AchievementController.cs b/Core/Controllers/AchievementController.cs index a2088cc2..c878fe5e 100644 --- a/Core/Controllers/AchievementController.cs +++ b/Core/Controllers/AchievementController.cs @@ -1,4 +1,6 @@ -namespace Core.Controllers; +using Core.Models.Eft.Profile; + +namespace Core.Controllers; public class AchievementController { diff --git a/Core/Controllers/BuildController.cs b/Core/Controllers/BuildController.cs index 91299800..da601eaa 100644 --- a/Core/Controllers/BuildController.cs +++ b/Core/Controllers/BuildController.cs @@ -1,3 +1,5 @@ +using Core.Models.Eft.Builds; +using Core.Models.Eft.PresetBuild; using Core.Models.Eft.Profile; namespace Core.Controllers; diff --git a/Core/Controllers/CustomizationController.cs b/Core/Controllers/CustomizationController.cs index f8e7307b..a0363efc 100644 --- a/Core/Controllers/CustomizationController.cs +++ b/Core/Controllers/CustomizationController.cs @@ -1,6 +1,8 @@ using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; +using Core.Models.Eft.Customization; using Core.Models.Eft.Hideout; +using Core.Models.Eft.ItemEvent; using Core.Models.Eft.Profile; namespace Core.Controllers; diff --git a/Core/Controllers/DialogueController.cs b/Core/Controllers/DialogueController.cs index 5780e3b8..ffa91bd6 100644 --- a/Core/Controllers/DialogueController.cs +++ b/Core/Controllers/DialogueController.cs @@ -1,3 +1,4 @@ +using Core.Models.Eft.Dialog; using Core.Models.Eft.Profile; using Core.Models.Enums; diff --git a/Core/Controllers/GameController.cs b/Core/Controllers/GameController.cs index 845bfb8c..74278ab6 100644 --- a/Core/Controllers/GameController.cs +++ b/Core/Controllers/GameController.cs @@ -1,4 +1,5 @@ using Core.Models.Eft.Common; +using Core.Models.Eft.Game; using Core.Models.Eft.Profile; namespace Core.Controllers; diff --git a/Core/Controllers/HealthController.cs b/Core/Controllers/HealthController.cs index a4cf719c..dc366064 100644 --- a/Core/Controllers/HealthController.cs +++ b/Core/Controllers/HealthController.cs @@ -1,5 +1,6 @@ using Core.Models.Eft.Common; using Core.Models.Eft.Health; +using Core.Models.Eft.ItemEvent; namespace Core.Controllers; diff --git a/Core/Controllers/NoteController.cs b/Core/Controllers/NoteController.cs index 075a889b..cdc2d6bd 100644 --- a/Core/Controllers/NoteController.cs +++ b/Core/Controllers/NoteController.cs @@ -1,4 +1,5 @@ using Core.Models.Eft.Common; +using Core.Models.Eft.ItemEvent; namespace Core.Controllers; diff --git a/Core/Controllers/PrestigeController.cs b/Core/Controllers/PrestigeController.cs index 2e8d95f3..2a4102a9 100644 --- a/Core/Controllers/PrestigeController.cs +++ b/Core/Controllers/PrestigeController.cs @@ -1,3 +1,4 @@ +using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; namespace Core.Controllers; diff --git a/Core/Controllers/RepairController.cs b/Core/Controllers/RepairController.cs index 584840bc..8e7bd9bf 100644 --- a/Core/Controllers/RepairController.cs +++ b/Core/Controllers/RepairController.cs @@ -1,4 +1,5 @@ using Core.Models.Eft.Common; +using Core.Models.Eft.ItemEvent; namespace Core.Controllers; diff --git a/Core/Controllers/TradeController.cs b/Core/Controllers/TradeController.cs index 807767a0..4e77b46e 100644 --- a/Core/Controllers/TradeController.cs +++ b/Core/Controllers/TradeController.cs @@ -1,5 +1,6 @@ using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; +using Core.Models.Eft.ItemEvent; using Core.Models.Eft.Ragfair; using Core.Models.Enums; diff --git a/Core/Controllers/TraderController.cs b/Core/Controllers/TraderController.cs index 00effd9b..4ddd52ad 100644 --- a/Core/Controllers/TraderController.cs +++ b/Core/Controllers/TraderController.cs @@ -1,4 +1,5 @@ using Core.Models.Eft.Common.Tables; +using Core.Models.Eft.Game; namespace Core.Controllers; diff --git a/Core/Controllers/WishlistController.cs b/Core/Controllers/WishlistController.cs index 64386856..6178c8b6 100644 --- a/Core/Controllers/WishlistController.cs +++ b/Core/Controllers/WishlistController.cs @@ -1,4 +1,5 @@ using Core.Models.Eft.Common; +using Core.Models.Eft.ItemEvent; namespace Core.Controllers;