Not important uodates

This commit is contained in:
SweetSea-ButImNotSweet
2024-04-24 17:00:06 +07:00
parent 5fc92acbb7
commit 5f2687f855
5 changed files with 20 additions and 18 deletions

View File

@@ -99,7 +99,7 @@ end
---@return table t
---Merge 2 tables into one<br>(**WARNING**: t2 can **overwrite** some value of t1 if both tables have some same keys!)
function table.merge(t1,t2)
local t
local t = {}
for k, v in pairs(t1) do t[k] = v end
for k, v in pairs(t2) do t[k] = v end
return t