v1.2.1
Compatibility
Changes
v1.2.1
Debug Logging Control Added a new configuration option to control debug logging output. The mod no longer floods the console with debug logs by default, making it production-server friendly. Server administrators can enable debug logging if needed for troubleshooting.
New Debug Configuration Option A new enableDebugLogging setting has been added to peacetime-common.toml (defaults to false). When enabled, the mod logs detailed information about peace time calculations every second. Perfect for development and troubleshooting, disabled by default for clean production logs.
Cleaner Console Output Production servers can now run Peace Time without debug message spam. The console remains clean and focused on important information unless you explicitly enable debugging through the configuration file.
Backward Compatible All existing features and commands remain unchanged. The debug logging feature is purely optional and doesn't affect any mod functionality or player experience.
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:ZJhvEghN:llY8wbAW"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ZJhvEghN:llY8wbAW"
}

