-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Magiclysm] Fix meat component (#76407)
* Update cooking_components.json * add into meat_red_raw * Update comestibles.json * Update comestibles.json * Update comestibles.json * Update comestibles.json * Update comestibles.json * Update comestibles.json * It still need the delete * Update comestibles.json * make impure meat able to pass autocheck * It might need more * a small test * a small test * remove the right one
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
[ | ||
{ | ||
"id": "meat_raw_steak", | ||
"id": "meat_red_raw_steak", | ||
"type": "requirement", | ||
"extend": { "components": [ [ [ "purified_meat", 1 ], [ "impure_meat", 1 ] ] ] } | ||
}, | ||
{ | ||
"id": "meat_red_raw", | ||
"type": "requirement", | ||
"extend": { "components": [ [ [ "purified_meat", 1 ] ] ] } | ||
} | ||
] |