Compatibility
Minecraft: Java Edition
1.21.1
1.20.1
Platforms
Supported environments
Creators
Details
Licensed ARR
Published 7 months ago
Updated 3 weeks ago
Changelog
requires cloth config api (v15.0.140)!
this is the new version of torridium for 1.21.1 forge (52.1.6).
optimization has been significantly improved in this version.
additionally, for developers and modpack makers, i improved the api and added tags:
- added
torridium:heat_sensitivetag: blocks in this tag will be processed by the heat logic. useful for ensuring modded flammable blocks are properly ignited. - added
torridium:heat_conductorstag: defines blocks that allow heat to pass through (e.g. iron bars, chains). - logic for detecting heat targets is now tag-based instead of hardcoded.
api & examples
javadoc is included in the code for all api methods.
1. json recipes (datapacks)
use torridium:heat_reaction to transform blocks.
{
"type": "torridium:heat_reaction",
"input": "minecraft:cobblestone",
"output": "minecraft:stone",
"chance": 0.1
}
2. code api (complex logic)
use HeatReactionRegistry for custom behavior.
// register complex logic
HeatReactionRegistry.register(Blocks.TNT, (level, pos, state, chance) -> {
if (level.random.nextFloat() < chance) {
// custom logic here
state.getBlock().onCaughtFire(state, level, pos, null, null);
return true; // stop standard processing
}
return false;
});
enjoy the game - and happy new year in advance!
Files
Metadata
Release channel
ReleaseVersion number
3.1.0Loaders
Game versions
1.21.1Environment
Client and server, required on both
Downloads
5Publication date
December 30, 2025 at 7:04 PMPublisher

DimaYastrebov
Member


