Skip to content

Commit

Permalink
Merge pull request CleverRaven#70444 from GuardianDll/too_many_bags
Browse files Browse the repository at this point in the history
fix 2000 bags with 1 sand
  • Loading branch information
Maleclypse authored Dec 26, 2023
2 parents a905a8e + 4bfc878 commit 4bbcf6f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions data/json/itemgroups/supplies.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,32 +55,38 @@
{
"id": "sandbag",
"type": "item_group",
"items": [ { "item": "material_sand", "count": 2000, "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_sand", "count": 2000 } ]
},
{
"id": "sandbag_part",
"type": "item_group",
"items": [ { "item": "material_sand", "count": [ 400, 1500 ], "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_sand", "count": [ 400, 1500 ] } ]
},
{
"id": "gravelbag",
"type": "item_group",
"items": [ { "item": "material_gravel", "count": 2000, "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_gravel", "count": 2000 } ]
},
{
"id": "gravelbag_part",
"type": "item_group",
"items": [ { "item": "material_gravel", "count": [ 400, 1500 ], "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_gravel", "count": [ 400, 1500 ] } ]
},
{
"id": "earthbag",
"type": "item_group",
"items": [ { "item": "material_soil", "count": 3, "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_soil", "count": 3 } ]
},
{
"id": "earthbag_part",
"type": "item_group",
"items": [ { "item": "material_soil", "count": [ 1, 2 ], "container-item": "bag_durasack" } ]
"container-item": "bag_durasack",
"items": [ { "item": "material_soil", "count": [ 1, 2 ] } ]
},
{
"id": "paintcans",
Expand Down

0 comments on commit 4bbcf6f

Please sign in to comment.