remove lava buckets as fuel
This commit is contained in:
parent
fbbfe31ba8
commit
e59dc4d57d
2 changed files with 10 additions and 0 deletions
|
|
@ -698,6 +698,10 @@ function removeGTCEURecipes(event) {
|
|||
|
||||
// Replace by the Heat Exchanger recipe for Mars
|
||||
event.remove({ id: 'gtceu:fluid_heater/formamide' })
|
||||
|
||||
// Remove lava bucket from boilers
|
||||
event.remove({ id: 'gtceu:steam_boiler/minecraft_lava_bucket' })
|
||||
event.remove({ id: 'gtceu:large_boiler/minecraft_lava_bucket' })
|
||||
|
||||
// Snow Stuffs
|
||||
|
||||
|
|
|
|||
|
|
@ -27,4 +27,10 @@ function registerMinecraftItemModifications(event) {
|
|||
event.modify('minecraft:netherite_leggings', item => {
|
||||
item.maxDamage = 960
|
||||
})
|
||||
|
||||
// Removes lava buckets as fuel
|
||||
|
||||
event.modify('minecraft:lava_bucket', item => {
|
||||
item.burnTime = 0
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue