diff --git a/gradle.properties b/gradle.properties index 8aebcb6..21acffd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ mod_name=Enhanced Explosives # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=All Rights Reserved # The mod version. See https://semver.org/ -mod_version=0.8.9 +mod_version=0.8.10 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/com/jenny/enhancedexplosives/entities/tnt/ClusterPrimedTNT.java b/src/main/java/com/jenny/enhancedexplosives/entities/tnt/ClusterPrimedTNT.java index 04d9d5a..fde6f46 100644 --- a/src/main/java/com/jenny/enhancedexplosives/entities/tnt/ClusterPrimedTNT.java +++ b/src/main/java/com/jenny/enhancedexplosives/entities/tnt/ClusterPrimedTNT.java @@ -1,9 +1,12 @@ package com.jenny.enhancedexplosives.entities.tnt; +import com.jenny.enhancedexplosives.blocks.blocks; import com.jenny.enhancedexplosives.entities.entities; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; import net.minecraft.world.phys.Vec3; import javax.annotation.Nullable; @@ -18,4 +21,9 @@ public class ClusterPrimedTNT extends basePrimedTNT { public ClusterPrimedTNT(EntityType entityType, Level level) { super(entityType, level, null); } + + @Override + public Block renderBlock() { + return Blocks.TNT; + } }