Skip to content

Commit

Permalink
fix magmacube and slime pet dmg
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeTheTech committed Dec 1, 2023
1 parent d79a629 commit 1272be3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ public boolean save(CompoundTag compoundTag) {
return false;
}

@Override
public void playerTouch(net.minecraft.world.entity.player.Player player) {
}

@Override
public void tick() {
super.tick();
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/lee/code/pets/pets/pet/monster/SlimePet.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ public boolean save(CompoundTag compoundTag) {
return false;
}

@Override
public void playerTouch(net.minecraft.world.entity.player.Player player) {
}

@Override
public void tick() {
super.tick();
Expand Down

0 comments on commit 1272be3

Please sign in to comment.