Skip to content

Commit 51e6262

Browse files
Fix portal bread explosion no longer breaking blocks (#4855)
1 parent 5eee16c commit 51e6262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Xplat/src/main/java/vazkii/botania/common/block/block_entity/AlfheimPortalBlockEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public static void commonTick(Level level, BlockPos worldPosition, BlockState bl
192192
}
193193
} else if (self.explode) {
194194
level.explode(null, worldPosition.getX() + .5, worldPosition.getY() + 2.0, worldPosition.getZ() + .5,
195-
3f, Level.ExplosionInteraction.NONE);
195+
3f, Level.ExplosionInteraction.TNT);
196196
self.explode = false;
197197

198198
if (!level.isClientSide && self.breadPlayer != null) {

0 commit comments

Comments
 (0)