FTB-Modpack-Issues icon indicating copy to clipboard operation
FTB-Modpack-Issues copied to clipboard

"Liquid Source" Fluid Jar reverts to "Milk" upon placement

Open Spiker985 opened this issue 3 weeks ago • 0 comments

Modpack

FTB StoneBlock 4

Modpack Version

1.4.0

Describe the issue

The below entry will revert to a standard Milk fluid cow when placed in the world datapacks/ftb/data/ftb/loot_table/chests/ocean_treasure.json

{
  "type": "minecraft:item",
  "name": "moofluids:fluid_cow_jar",
  "weight": 1,
  "functions": [
    {
      "function": "minecraft:set_components",
      "components": {
        "minecraft:block_entity_data": {
          "CanBeMilked": 1,
          "FluidCowFluid": "sauce:source_fluid",
          "FluidTank": {
            "Fluid": { "amount": 1000, "id": "sauce:source_fluid" }
          },
          "HasCow": 1,
          "MilkingCooldown": 0,
          "id": "moofluids:fluid_cow_jar"
        },
        "moofluids:cow_jar_data": {
          "capacity": 32000,
          "cow_fluid": "sauce:source_fluid",
          "has_cow": true
        },
        "moofluids:fluid_tank": {
          "amount": 1000,
          "id": "sauce:source_fluid"
        }
      }
    }
  ]
}

The easiest way I found to retrieve this for testing purposes is to set up a Repeating command block with the following command /loot spawn ~ ~1 ~ loot ftb:chests/ocean_treasure until it spawns the "Liquid Source" Fluid Cow Jar. Put the command block nearby a Pedestal'd Black Hole Band and chest, and filter out anything that that isn't a Fluid Cow Jar.

This also makes sense, seeing as how the /summon moofluids:fluid_cow ~ ~ ~ {FluidRegistryName:"sauce:source_liquid"} command fails, but /summon moofluids:fluid_cow ~ ~ ~ {FluidRegistryName:"minecraft:water"} completes successfully.

This seems to be due to the fact that in the moofluid config, sauce:* is on the blacklist config/moofluids-common.toml

fluidBlacklist = [
  "industrialforegoing:fermented_ore_meat",
  "industrialforegoing:raw_ore_meat",
  "immersiveengineering:potion",
  "minecraft:milk",
  "ftb:molten_chaos",
  "productivemetalworks:molten_heavy_core",
  "productivemetalworks:molten_glass",
  "productivemetalworks:molten_emerald",
  "productivemetalworks:molten_diamond",
  "productivemetalworks:molten_lapis",
  "productivemetalworks:molten_quartz",
  "productivemetalworks:molten_ancient_debris",
  "productivemetalworks:molten_shulker_shell",
  "productivemetalworks:molten_magma_cream",
  "productivemetalworks:molten_wax",
  "productivemetalworks:meat",
  "productivemetalworks:molten_netherite",
  "ftboceanmobs:*",
  "create_dragons_plus:*",
  "create_shimmer:*",
  "actuallyadditions:*",
  "mekanism:*",
  "enderio:*",
  "justdirethings:*",
  "mob_grinding_utils:*",
  "create:*",
  "createaddition:*",
  "create_enchantment_industry:*",
  "mekanismgenerators:*",
  "sauce:*",                                                             <--------------------------------
  "advanced_ae:*",
  "sophisticatedcore:*",
  "supplementaries:*",
  "oritech:still_sulfuric_acid",
  "oritech:still_biofuel",
  "oritech:still_molten_biosteel",
  "oritech:still_molten_duratium",
  "oritech:still_molten_energite",
  "oritech:still_molten_adamant",
  "productivemetalworks:molten_enderium"
]

Seeing as how the only entries in JEI for sauce are for this fluid, either sauce needs removed from the blacklist or the item needs removed from the loot table

Image Image Image

Logs

https://mclo.gs/GGG8aXI

Spiker985 avatar Dec 24 '25 05:12 Spiker985