Skip to content

Commit

Permalink
🔥 remove abstract keyword from damage tracker mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
SerenModz21 committed Jul 6, 2022
1 parent febc70d commit 1d4dd7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/me/seren/mixin/DamageTrackerMixin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package me.seren.mixin;

import me.seren.Events;
import net.minecraft.advancement.PlayerAdvancementTracker;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.damage.DamageTracker;
import net.minecraft.text.Text;
Expand All @@ -13,7 +12,7 @@
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

@Mixin(DamageTracker.class)
public abstract class DamageTrackerMixin {
public class DamageTrackerMixin {
@Shadow @Final private LivingEntity entity;

@Inject(at = @At(value = "RETURN"), method = "getDeathMessage")
Expand Down

0 comments on commit 1d4dd7d

Please sign in to comment.