Commit 8d445fa7 by Jonathan Thomas

Bumping version to 1.2.0, new release of CreatureChat!

parent 35d3af57
Pipeline #13217 passed with stages
in 2 minutes 3 seconds
......@@ -29,6 +29,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
### Fixed
- Fixed a regression caused by adding a "-forge" suffix to one of our builds
- Do not show auto-generated message above the player's head (you have arrived, show item, etc...)
## [1.1.0] - 2024-08-07
......
......@@ -97,7 +97,7 @@ public class LeadPlayerGoal extends PlayerBaseGoal {
if (!this.entity.getNavigation().isFollowingPath()) {
Path path = this.entity.getNavigation().findPathTo(this.currentTarget.x, this.currentTarget.y, this.currentTarget.z, 1);
if (path != null) {
LOGGER.info("Start moving along path");
LOGGER.debug("Start moving along path");
this.entity.getNavigation().startMovingAlong(path, this.speed);
}
}
......
......@@ -371,7 +371,7 @@ public class ServerPackets {
// Write the entity's chat updated data
buffer.writeString(chatData.entityId);
if (sender != null) {
if (sender != null && chatData.auto_generated == 0) {
buffer.writeString(sender.getUuidAsString());
buffer.writeString(sender.getDisplayName().getString());
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment