-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Mixing bowl recipes that result in no fluid output will leave exces…
…s fluid in the bowl - Allow red and yellow bell peppers to grow in greenhouses - Angry bees will despawn quickly instead of remaining angry forever
- Loading branch information
1 parent
4ce5e1e
commit 39933c0
Showing
7 changed files
with
65 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
### Changes | ||
- Added Stainless Steel jar lids. | ||
- Updated the stomping barrel recipe again. | ||
- Made the check for flowers for bees much more forgiving, most plants should work now. | ||
- Reduced the oil requirement for pizzas to 100 mB. | ||
- Added soybean oil. It burns slightly less efficiently than olive oil in a lamp, and may be substituted for olive oil in pizza. | ||
- Fix bad links for field guide redirects. (Closes #179) | ||
- Updated Chinese translation | ||
- Mixing bowl recipes that result in no fluid output will leave excess fluid in the bowl | ||
- Allow red and yellow bell peppers to grow in greenhouses | ||
- Angry bees will despawn quickly instead of remaining angry forever |
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
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
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/firmalife/firmalife/plantable/red_bell_pepper.json
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"planter": "large", | ||
"ingredient": { | ||
"item": "tfc:seeds/red_bell_pepper" | ||
}, | ||
"seed": { | ||
"item": "tfc:seeds/red_bell_pepper" | ||
}, | ||
"crop": { | ||
"item": "tfc:food/red_bell_pepper" | ||
}, | ||
"nutrient": "potassium", | ||
"stages": 6, | ||
"texture": [ | ||
"tfc:block/crop/red_bell_pepper_0", | ||
"tfc:block/crop/red_bell_pepper_1", | ||
"tfc:block/crop/red_bell_pepper_2", | ||
"tfc:block/crop/red_bell_pepper_3", | ||
"tfc:block/crop/red_bell_pepper_4", | ||
"tfc:block/crop/red_bell_pepper_5", | ||
"tfc:block/crop/red_bell_pepper_6" | ||
], | ||
"specials": [], | ||
"extra_seed_chance": 0.5 | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/firmalife/firmalife/plantable/yellow_bell_pepper.json
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"planter": "large", | ||
"ingredient": { | ||
"item": "tfc:seeds/yellow_bell_pepper" | ||
}, | ||
"seed": { | ||
"item": "tfc:seeds/yellow_bell_pepper" | ||
}, | ||
"crop": { | ||
"item": "tfc:food/yellow_bell_pepper" | ||
}, | ||
"nutrient": "potassium", | ||
"stages": 6, | ||
"texture": [ | ||
"tfc:block/crop/yellow_bell_pepper_0", | ||
"tfc:block/crop/yellow_bell_pepper_1", | ||
"tfc:block/crop/yellow_bell_pepper_2", | ||
"tfc:block/crop/yellow_bell_pepper_3", | ||
"tfc:block/crop/yellow_bell_pepper_4", | ||
"tfc:block/crop/yellow_bell_pepper_5", | ||
"tfc:block/crop/yellow_bell_pepper_6" | ||
], | ||
"specials": [], | ||
"extra_seed_chance": 0.5 | ||
} |