mirror of
https://github.com/minetest-mods/saveschems.git
synced 2024-12-23 01:10:32 +01:00
Re-add force-placed root node to mapgen trees/large cactus
Add missing spaces and missing empty lines
This commit is contained in:
parent
dfaa83863c
commit
100c02865a
17
init.lua
17
init.lua
@ -48,7 +48,7 @@ mts_save("aspen_tree", {
|
||||
L, L, L, L, L,
|
||||
_, O, L, O, _,
|
||||
|
||||
_, _, _, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, T, _, _,
|
||||
_, O, T, O, _,
|
||||
@ -112,7 +112,7 @@ mts_save("aspen_tree_from_sapling", {
|
||||
L, L, L, L, L,
|
||||
_, O, L, O, _,
|
||||
|
||||
_, _, _, _, _,
|
||||
_, _, B, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, B, _, _,
|
||||
_, O, B, O, _,
|
||||
@ -183,7 +183,7 @@ mts_save("apple_tree", {
|
||||
N, M, M, M, N,
|
||||
_, N, N, N, _,
|
||||
|
||||
_, _, T, _, _,
|
||||
_, _, Y, _, _,
|
||||
_, _, Y, _, _,
|
||||
_, _, Y, _, _,
|
||||
_, _, Y, _, _,
|
||||
@ -530,7 +530,7 @@ mts_save("pine_tree", {
|
||||
_, L, L, L, _,
|
||||
_, _, _, _, _,
|
||||
|
||||
_, _, B, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, T, _, _,
|
||||
_, _, T, _, _,
|
||||
@ -718,7 +718,7 @@ mts_save("acacia_tree", {
|
||||
M, M, M, M, _, _, _, _, _,
|
||||
_, _, _, _, M, L, L, L, M,
|
||||
|
||||
_, _, _, _, {name="default:acacia_tree", prob=255} , _, _, _, _,
|
||||
_, _, _, _, T, _, _, _, _,
|
||||
_, _, _, _, T, _, _, _, _,
|
||||
_, _, _, _, T, _, _, _, _,
|
||||
_, _, _, _, T, _, _, _, _,
|
||||
@ -863,12 +863,15 @@ mts_save("acacia_tree_from_sapling", {
|
||||
})
|
||||
|
||||
-- Large cactus
|
||||
|
||||
local C = {name = "default:cactus", prob = 255, param2 = 20}
|
||||
local R = {name = "default:cactus", prob = 255, param2 = 20, force_place = true}
|
||||
local E = {name = "default:cactus", prob = 127, param2 = 20}
|
||||
|
||||
mts_save("large_cactus", {
|
||||
size = {x = 5, y = 7, z = 1},
|
||||
data = {
|
||||
_, _, C, _, _,
|
||||
_, _, R, _, _,
|
||||
_, _, C, _, _,
|
||||
_, _, C, _, _,
|
||||
C, C, C, C, C,
|
||||
@ -879,6 +882,7 @@ mts_save("large_cactus", {
|
||||
})
|
||||
|
||||
-- Papyrus
|
||||
|
||||
mts_save("papyrus", {
|
||||
size = {x = 1, y = 7, z = 1},
|
||||
data = {
|
||||
@ -897,6 +901,7 @@ mts_save("papyrus", {
|
||||
})
|
||||
|
||||
-- Waterlily
|
||||
|
||||
mts_save("waterlily", {
|
||||
size = {x = 1, y = 3, z = 1},
|
||||
data = {
|
||||
|
Loading…
Reference in New Issue
Block a user