Skip to content

Commit

Permalink
Merge pull request #26 from LaBoulangerie/cart
Browse files Browse the repository at this point in the history
Nerf Tnt Minecarts
  • Loading branch information
GroobleDierne authored Dec 23, 2024
2 parents d10bfc9 + 9a48608 commit 45a2397
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "net.laboulangerie"
version = "1.0.2"
version = "1.0.3"
description = "LaBoulangerieCore"

plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ private boolean isCardinalMove(Location loc1, Location loc2) {

@EventHandler
public void onCrystalExplode(EntityDamageByEntityEvent event) {
if (event.getDamager().getType() != EntityType.END_CRYSTAL)
if (event.getDamager().getType() != EntityType.END_CRYSTAL && event.getDamager().getType() != EntityType.TNT_MINECART)
return;

event.setDamage(event.getDamage()
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: LaBoulangerieCore
version: ${project.version}
version: 1.0.3
main: net.laboulangerie.laboulangeriecore.LaBoulangerieCore
api-version: 1.21
authors: [Grooble_, PainOchoco, Blackoutburst, Pikachuz3, Herllox]
Expand Down

0 comments on commit 45a2397

Please sign in to comment.