Tags
Creators
Details
Licensed LGPL-3.0-only
Published 3 years ago
All versions
2.1.0
Release
Thermoo 2.1.03 years ago 167.8K
Compatibility
Minecraft: Java Edition
1.20–1.20.1
Platforms
Fabric
Quilt
Supported environments
Server-side
Client and server
Required content
Any compatible version
Changes
- Added a new
entity_typefield to temperature effects - this is a new field that causes the effect to only apply to the specific entity type. This is also more performant than using predicates for this, as the effect will only be ticked for that type. Unfortunately, this means that tags won't work in this field. However, for effects that should only apply to a single type of entity (eg players), using this field can significantly reduce the amount of stuff the server has to tick. If this field is unspecified, then the existing behaviour of ticking the effect on all entities is retained. - Added a new
maxWetTicks(Soakable)method to the environment controller. In order to preserve existing functionality, this defaults to a value of600instead of the usual0. However, this value may now be overridden by mods as they see fit. - Fixed up some javadoc on the environment controller that was outdated
Supplementary resources
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:9TbXlAut:pRg1Rydk"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:9TbXlAut:pRg1Rydk"
}

