mirror of
https://github.com/minefaco/stripped_tree.git
synced 2024-11-19 22:13:50 +01:00
23 lines
419 B
Lua
23 lines
419 B
Lua
--Register stripped trees
|
|
local mod_name = "moretrees"
|
|
local trunk_names = {
|
|
"beech_trunk",
|
|
"apple_tree_trunk",
|
|
"oak_trunk",
|
|
"sequoia_trunk",
|
|
"birch_trunk",
|
|
"palm_trunk",
|
|
"date_palm_trunk",
|
|
"spruce_trunk",
|
|
"cedar_trunk",
|
|
"poplar_trunk",
|
|
"willow_trunk",
|
|
"rubber_tree_trunk",
|
|
"fir_trunk",
|
|
"jungletree_trunk",
|
|
|
|
}
|
|
|
|
stripped_tree.register_trunk(mod_name,trunk_names)
|
|
|