Removed old lua files

This commit is contained in:
ZioPao
2024-01-08 16:01:28 +01:00
parent cf27a24380
commit c35454807d
35 changed files with 2 additions and 4125 deletions

View File

@@ -19,8 +19,7 @@ DataController.instances = {}
---@param isResetForced boolean?
---@return DataController
function DataController:new(username, isResetForced)
TOC_DEBUG.print("[DataController] NEW for " .. username)
--error("TEST TRIGGER")
TOC_DEBUG.print("Creating new DataController instance for " .. username)
local o = {}
setmetatable(o, self)
self.__index = self

View File

@@ -15,7 +15,7 @@ end
function TOC_DEBUG.print(string)
if isDebugEnabled() then
local runningFile = TOC_DEBUG.getRunningFile()
print("TOC: " .. "[" .. runningFile .. "] " .. tostring(string))
print("[TOC]" .. "[" .. runningFile .. "] " .. tostring(string))
end
end