Skip to content

Commit

Permalink
Merge pull request #74163 from PatrikLundell/firestation1
Browse files Browse the repository at this point in the history
Added roof chimney/vent pipe
  • Loading branch information
Maleclypse authored May 29, 2024
2 parents 2d1b001 + b1a5346 commit 0807425
Showing 1 changed file with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,11 @@
"update_mapgen_id": "fbmc_firestation1_fireplace",
"method": "json",
"object": {
"set": [ { "point": "furniture", "id": "f_fireplace", "x": 1, "y": 12 } ],
"place_loot": [ { "item": "pot", "x": 1, "y": 13, "chance": 100 } ]
"set": [
{ "point": "furniture", "id": "f_fireplace", "x": 1, "y": 12, "z": 0 },
{ "point": "furniture", "id": "f_chimney", "x": 1, "y": 12, "z": 1 }
],
"place_loot": [ { "item": "pot", "x": 1, "y": 13, "z": 0, "chance": 100 } ]
}
},
{
Expand All @@ -79,7 +82,12 @@
"type": "mapgen",
"update_mapgen_id": "fbmc_firestation1_stove",
"method": "json",
"object": { "set": [ { "point": "furniture", "id": "f_woodstove", "x": 1, "y": 12 } ] }
"object": {
"set": [
{ "point": "furniture", "id": "f_woodstove", "x": 1, "y": 12, "z": 0 },
{ "point": "furniture", "id": "f_vent_pipe", "x": 1, "y": 12, "z": 1 }
]
}
},
{
"type": "mapgen",
Expand Down Expand Up @@ -201,7 +209,10 @@
"update_mapgen_id": "fbmc_firestation1_forge",
"method": "json",
"object": {
"set": [ { "point": "furniture", "id": "f_forge_rock", "x": 6, "y": 17 } ],
"set": [
{ "point": "furniture", "id": "f_forge_rock", "x": 6, "y": 17, "z": 0 },
{ "point": "furniture", "id": "f_chimney", "x": 6, "y": 17, "z": 1 }
],
"place_loot": [ { "item": "hammer", "x": 8, "y": 21, "chance": 100 } ]
}
},
Expand Down

0 comments on commit 0807425

Please sign in to comment.