Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.20.1/dev #275

Merged
merged 3 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2001.2.6]

### Fixed
* Setting `disable_protection` to false in server config `ftbchunks-world.snbt` now allows explosions to happen in claimed chunks

## [2001.2.5]

### Added
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/dev/ftb/mods/ftbchunks/FTBChunks.java
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ private boolean ignoreExplosion(Level level, Explosion explosion) {
}

public void explosionDetonate(Level level, Explosion explosion, List<Entity> affectedEntities) {
if (ignoreExplosion(level, explosion)) {
if (FTBChunksWorldConfig.DISABLE_PROTECTION.get() || ignoreExplosion(level, explosion)) {
return;
}

Expand Down
3 changes: 3 additions & 0 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@
"architectury": ">=${archversion}",
"ftblibrary": ">=${ftblibraryversion}",
"ftbteams": ">=${ftbteamsversion}"
},
"breaks": {
"ftblibrary": ">=2001.2.0"
}
}
2 changes: 1 addition & 1 deletion forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ side = "BOTH"
[[dependencies.ftbchunks]]
modId = "ftblibrary"
mandatory = true
versionRange = "[${ftblibraryversion},)"
versionRange = "[${ftblibraryversion},2001.2.0)"
ordering = "AFTER"
side = "BOTH"

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.daemon=false
mod_id=ftbchunks
archives_base_name=ftb-chunks
maven_group=dev.ftb.mods
mod_version=2001.2.5
mod_version=2001.2.6
mod_author=FTB Team

minecraft_version=1.20.1
Expand Down
Loading