added milks to the placeable fluid blacklist
This commit is contained in:
parent
6b2d37fb20
commit
c725428991
3 changed files with 11 additions and 3 deletions
|
|
@ -8,10 +8,14 @@
|
|||
- Hardened non-TFC rocks are now craftable (#2447) @glitchplaysgames714
|
||||
- Magma blocks are now hot to hold @Pyritie
|
||||
- Added a recipe to craft old gregtech facades into ones with a new texture @Pyritie
|
||||
- Fluid sources of alcohol and milks are no longer placeable, so you can't drink from them infinitely any more @bigtho80
|
||||
### Bug fixes
|
||||
- Fix for food stacking everywhere! @Mqrius
|
||||
- Fixed some curving press tool head recipes being cheaper than intended (#2478) @Pyritie
|
||||
- Fixed some bastion chests being empty @Pyritie
|
||||
- Fixed overlapping durability numbers on the curio HUD (#2484) @glitchplaysgames714
|
||||
- Fixed a potential crash involving the refrigerator @Redeix
|
||||
- Fixed the evaporation tower requiring an input hatch even for recipes that don't have a fluid input @glitchplaysgames714
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
|
||||
|
|
|
|||
|
|
@ -86,7 +86,13 @@ function registerTFCItemTags(event) {
|
|||
event.add("tfc:usable_on_tool_rack", entry);
|
||||
});
|
||||
|
||||
//liquid non placeable
|
||||
//liquid non placeable
|
||||
event.add("tfc:nonplaceable", "minecraft:milk_bucket")
|
||||
event.add("tfc:nonplaceable", "firmalife:bucket/yak_milk")
|
||||
event.add("tfc:nonplaceable", "firmalife:bucket/goat_milk")
|
||||
event.add("tfc:nonplaceable", "tfc_gurman:ox_milk_bucket")
|
||||
event.add("tfc:nonplaceable", "tfc_gurman:sheep_milk_bucket")
|
||||
event.add("tfc:nonplaceable", "tfc_gurman:alpaca_milk_bucket")
|
||||
event.add("tfc:nonplaceable", "tfc:bucket/beer")
|
||||
event.add("tfc:nonplaceable", "tfc:bucket/cider")
|
||||
event.add("tfc:nonplaceable", "tfc:bucket/rum")
|
||||
|
|
@ -95,7 +101,6 @@ function registerTFCItemTags(event) {
|
|||
event.add("tfc:nonplaceable", "tfc:bucket/whiskey")
|
||||
event.add("tfc:nonplaceable", "tfc:bucket/corn_whiskey")
|
||||
event.add("tfc:nonplaceable", "tfc:bucket/rye_whiskey")
|
||||
|
||||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_beer")
|
||||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_cider")
|
||||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_rum")
|
||||
|
|
@ -105,7 +110,6 @@ function registerTFCItemTags(event) {
|
|||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_corn_whiskey")
|
||||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_rye_whiskey")
|
||||
event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_mead")
|
||||
|
||||
event.add("tfc:nonplaceable", "tfc_gurman:nalivka_bucket")
|
||||
|
||||
// Ингредиенты для закваски
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue