1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-30 13:50:23 +02:00

Fix missing papyrus in savanna, add a dry dirt version

Papyrus was missing from the dry dirt 'savanna_shore' biome due to
only being placed on dirt. A mistake made when changing savanna
dirt to dry dirt.

Rename existing papyrus schematic to 'papyrus_on_dirt' and only
place in the 'rainforest_swamp' biome.
Add a new papyrus schematic 'papyrus_on_dry_dirt', placed in the
'savanna' biome.
This commit is contained in:
Paramat
2020-02-09 01:34:17 +00:00
committed by GitHub
parent 1420376e32
commit db632b67bf
4 changed files with 45 additions and 4 deletions

View File

@ -2100,7 +2100,7 @@ mts_save("large_cactus", {
-- Papyrus
mts_save("papyrus", {
mts_save("papyrus_on_dirt", {
size = {x = 1, y = 7, z = 1},
data = {
{name = "default:dirt", prob = 255, force_place = true},
@ -2117,6 +2117,23 @@ mts_save("papyrus", {
},
})
mts_save("papyrus_on_dry_dirt", {
size = {x = 1, y = 7, z = 1},
data = {
{name = "default:dry_dirt", prob = 255, force_place = true},
{name = "default:dry_dirt", prob = 255, force_place = true},
{name = "default:papyrus", prob = 255},
{name = "default:papyrus", prob = 255},
{name = "default:papyrus", prob = 255},
{name = "default:papyrus", prob = 255},
{name = "default:papyrus", prob = 255},
},
yslice_prob = {
{ypos = 2, prob = 127},
{ypos = 3, prob = 127},
},
})
-- Bush