mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
Not important uodates
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user