Missed some stuff

This commit is contained in:
ZioPao
2024-01-08 11:43:07 +01:00
parent 1cb60dd0e8
commit 1273dc7c7a
3 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ function LocalPlayerController.InitializePlayer(isForced)
-- Since isForced is used to reset an existing player data, we're gonna clean their ISHealthPanel table too
if isForced then
local ItemsController = require("TOC/Handlers/ItemsController")
local ItemsController = require("TOC/Controllers/ItemsController")
ItemsController.Player.DeleteAllOldAmputationItems(playerObj)
CachedDataHandler.Reset(username)
end

View File

@@ -1,5 +1,5 @@
local DataController = require("TOC/Controllers/DataController")
local ItemsController = require("TOC/Handlers/ItemsController")
local ItemsController = require("TOC/Controllers/ItemsController")
local CachedDataHandler = require("TOC/Handlers/CachedDataHandler")
local LocalPlayerController = require("TOC/Controllers/LocalPlayerController")
local StaticData = require("TOC/StaticData")

View File

@@ -1,4 +1,4 @@
local ItemsController = require("TOC/Handlers/ItemsController")
local ItemsController = require("TOC/Controllers/ItemsController")
--------------------