Перейти к содержимому
Mineforgian

Everything Burns

Makes all blocks other than fluids flammable.

245 загрузок2 подписчиковMITfabric

Обновлён 7 сентября 2025 г. · опубликован 7 сентября 2025 г.

What will you mine when stone turns to fire?

What will you craft when diamonds crumble to ash?

What will you build... when Everything Burns?

This mod makes all blocks, except for fluids and waterlogged blocks, flammable. 

It's as simple as that. 

  

This is, essentially, the entire code of the mod:


@Mixin(FireBlock.class)
public class FireBlockMixin {
    public static final TagKey<Block> BURNING_NOT_MODIFIED = TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath(MOD_ID, "burning_not_modified"));

    @ModifyReturnValue(at = @At("RETURN"), method = "getBurnOdds(Lnet/minecraft/world/level/block/state/BlockState;)I")
    private int modifyBurnOdds(int original, @Local(argsOnly = true) BlockState state) {
        return original <= 0 && !state.is(BURNING_NOT_MODIFIED) && state.getFluidState().isEmpty() && !state.isAir()  ? 30 : original;
    }

    @ModifyReturnValue(at = @At("RETURN"), method = "getIgniteOdds(Lnet/minecraft/world/level/block/state/BlockState;)I")
    private int modifyIgniteOdds(int original, @Local(argsOnly = true) BlockState state) {
        return original <= 0 && !state.is(BURNING_NOT_MODIFIED) && state.getFluidState().isEmpty() && !state.isAir()  ? 60 : original;
    }
}

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
1.0.0Релиз1.21.5, 1.21.6, 1.21.7, 1.21.8fabric7 сентября 2025 г.Скачать (18 КБ)

Ченджлог

1.0.0Релиз1.21.6, 1.21.7, 1.21.8 · 7 сентября 2025 г.

First upload. Have fun in the Nether!

Комментарии

Загружаем…