Remove unused deepcopy function from oop/utils.lua

This commit is contained in:
Chipperfluff 2026-01-01 18:33:57 +01:00
parent 64912101c4
commit ec6e7552fc

View File

@ -1,15 +0,0 @@
local function deepcopy(t)
local new = {}
for k, v in pairs(t) do
if type(v) == "table" then
new[k] = deepcopy(v)
else
new[k] = v
end
end
return new
end
return {
deepcopy = deepcopy
}