Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Version 2.2.049
(Codebase) Fixed unit tests for Java 25 (thanks Warriorrrr)
Fixed copper items not giving XP for Repair (thanks Remski01)
Fixed edge case where mcMMO could drop items with stack size set outside normal bounds
Fixed a bug where tamed wolves could cause errors on Folia (thanks Warriorrrr)

NOTES:
As a semi-permanent work around, mcMMO keeps track of when players swing their weapon, if they have swung it recently enough combat skills will work even if you have a spear in your off-hand.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public void processEnvironmentallyAware(@NotNull Wolf wolf, double damage) {

Player owner = getPlayer();

wolf.teleport(owner);
mcMMO.p.getFoliaLib().getScheduler().teleportAsync(wolf, owner.getLocation());
NotificationManager.sendPlayerInformation(owner, NotificationType.SUBSKILL_MESSAGE,
"Taming.Listener.Wolf");
}
Expand Down