mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
10 lines
364 B
Lua
10 lines
364 B
Lua
|
--- SHALLOW ONLY - applies the values in source to overwrite the equivalent keys in target.
|
||
|
-- Warning: This function mutates target!
|
||
|
-- @param source table The source to take values from
|
||
|
-- @param target table The target to write values to
|
||
|
function worldeditadditions.table_apply(source, target)
|
||
|
for key, value in pairs(source) do
|
||
|
target[key] = value
|
||
|
end
|
||
|
end
|