From 77d1cef1d079a2254873e776b3e1c6c8e04bf537 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 28 May 2026 20:46:35 +0000 Subject: [PATCH] fuel: tier lava equivalent to crude oil (8000 ticks/bucket) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this entry, lava buckets get the vanilla bucket-burn fallback of 20000 ticks each — which made lava more powerful than refined TFMG kerosene/naphtha despite being free and trivially obtainable. Setting lava to 8000 ticks matches crude_oil exactly: both are the raw entry-tier fuels you can scoop without any infrastructure, and the player has to commit to a refining setup to unlock the higher tiers. Solid fuels (coal, charcoal, blaze rods, etc.) continue to work via realisticTrains' chest/barrel pathway -- no datapack entry needed. Co-Authored-By: Claude Opus 4.7 --- .../bns-fuel/data/bns/railways_liquid_fuel/lava.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pack/overrides/world/datapacks/bns-fuel/data/bns/railways_liquid_fuel/lava.json diff --git a/pack/overrides/world/datapacks/bns-fuel/data/bns/railways_liquid_fuel/lava.json b/pack/overrides/world/datapacks/bns-fuel/data/bns/railways_liquid_fuel/lava.json new file mode 100644 index 0000000..5931ec2 --- /dev/null +++ b/pack/overrides/world/datapacks/bns-fuel/data/bns/railways_liquid_fuel/lava.json @@ -0,0 +1,4 @@ +{ + "fluids": ["minecraft:lava"], + "fuel_ticks": 8000 +} -- 2.52.0