Links
Tags
Creators
Details
1.1
Compatibility
Changes
=== TouchFireMod v1.1 - Update Notes ===
NEW FEATURES:
- Configuration Menu: Full in-game config GUI accessible from Mods menu (Mods → TouchFireMod → Config)
- Whitelist/Blacklist System: Control which blocks can ignite torches • Enable Whitelist Mode: Only selected blocks ignite torches • Enable Blacklist Mode: All blocks except selected ones ignite torches
- Toggle Mod: Enable or disable the mod without removing it (modEnabled setting)
- Adjustable Burn Delay: Customize torch ignition time in ticks (default: 100 ticks = 5 seconds)
- Multi-language Support: English, Russian, German, Ukrainian translations
- Chat Announcement: Welcome message with clickable links to ModRinth and CurseForge
IMPROVEMENTS:
- Better mod block detection: Now supports blocks from other mods (DynamicTrees, etc.) via material and registry name checking
- All wooden blocks supported: Logs, leaves, planks, wood stairs
- Server-side only: No client-side overhead on servers
- Configurable blacklist: Default blocks included (stone, cobblestone, bedrock)
CONFIGURATION: Config file location: config/touchfiremod.cfg Settings: • modEnabled: Enable/disable the mod • burnDelay: Torch ignition delay (ticks) • useWhitelist: Whitelist vs Blacklist mode • blockList: Block registry names (format: modid:blockname)
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:ifp21wS1:eQKkyucY"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ifp21wS1:eQKkyucY"
}

