Skip to content

Commit

Permalink
Merge pull request #319 from FTBTeam/1.19/dev
Browse files Browse the repository at this point in the history
1.19/dev
  • Loading branch information
desht authored Sep 10, 2024
2 parents bbb0c66 + 8712a9f commit 1611034
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
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).

## [1902.4.7]

### Fixed
* Fixed Mob Griefing team setting (enderman block stealing protection) not functioning correctly

## [1902.4.6]

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import net.minecraftforge.common.world.ForgeChunkManager;
import net.minecraftforge.event.entity.EntityMobGriefingEvent;
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
import net.minecraftforge.eventbus.api.Event;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

Expand Down Expand Up @@ -58,7 +59,7 @@ private void mobGriefing(EntityMobGriefingEvent event) {
ClaimedChunk cc = FTBChunksAPI.getManager().getChunk(new ChunkDimPos(event.getEntity()));

if (cc != null && !cc.allowMobGriefing()) {
event.setCanceled(true);
event.setResult(Event.Result.DENY);
}
}
}
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=1902.4.6
mod_version=1902.4.7
mod_author=FTB Team
minecraft_version=1.19.2
forge_version=43.2.8
Expand Down

0 comments on commit 1611034

Please sign in to comment.