Skip to content

Commit

Permalink
Fix upside down nodes in large cactus schematic (minetest#3123)
Browse files Browse the repository at this point in the history
* Update schematic_tables.txt (large_cactus)
* Replace large_cactus with upside down nodes with fixed one
  • Loading branch information
mruncreative authored and MoNTE48 committed Jun 2, 2024
1 parent 0739707 commit af5db9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified mods/default/schematics/large_cactus.mts
Binary file not shown.
6 changes: 3 additions & 3 deletions schematic_tables.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2045,9 +2045,9 @@ mts_save("aspen_log", {

-- 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}
local C = {name = "default:cactus", prob = 255}
local R = {name = "default:cactus", prob = 255, force_place = true}
local E = {name = "default:cactus", prob = 127}

mts_save("large_cactus", {
size = {x = 5, y = 7, z = 5},
Expand Down

0 comments on commit af5db9a

Please sign in to comment.