Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
CreatureChat
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Public
CreatureChat
Commits
8d445fa7
Commit
8d445fa7
authored
Dec 29, 2024
by
Jonathan Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bumping version to 1.2.0, new release of CreatureChat!
parent
35d3af57
Pipeline
#13217
passed with stages
in 2 minutes 3 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG.md
CHANGELOG.md
+1
-0
LeadPlayerGoal.java
src/main/java/com/owlmaddie/goals/LeadPlayerGoal.java
+1
-1
ServerPackets.java
src/main/java/com/owlmaddie/network/ServerPackets.java
+1
-1
No files found.
CHANGELOG.md
View file @
8d445fa7
...
@@ -29,6 +29,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
...
@@ -29,6 +29,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
### Fixed
### Fixed
-
Fixed a regression caused by adding a "-forge" suffix to one of our builds
-
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
## [1.1.0] - 2024-08-07
...
...
src/main/java/com/owlmaddie/goals/LeadPlayerGoal.java
View file @
8d445fa7
...
@@ -97,7 +97,7 @@ public class LeadPlayerGoal extends PlayerBaseGoal {
...
@@ -97,7 +97,7 @@ public class LeadPlayerGoal extends PlayerBaseGoal {
if
(!
this
.
entity
.
getNavigation
().
isFollowingPath
())
{
if
(!
this
.
entity
.
getNavigation
().
isFollowingPath
())
{
Path
path
=
this
.
entity
.
getNavigation
().
findPathTo
(
this
.
currentTarget
.
x
,
this
.
currentTarget
.
y
,
this
.
currentTarget
.
z
,
1
);
Path
path
=
this
.
entity
.
getNavigation
().
findPathTo
(
this
.
currentTarget
.
x
,
this
.
currentTarget
.
y
,
this
.
currentTarget
.
z
,
1
);
if
(
path
!=
null
)
{
if
(
path
!=
null
)
{
LOGGER
.
info
(
"Start moving along path"
);
LOGGER
.
debug
(
"Start moving along path"
);
this
.
entity
.
getNavigation
().
startMovingAlong
(
path
,
this
.
speed
);
this
.
entity
.
getNavigation
().
startMovingAlong
(
path
,
this
.
speed
);
}
}
}
}
...
...
src/main/java/com/owlmaddie/network/ServerPackets.java
View file @
8d445fa7
...
@@ -371,7 +371,7 @@ public class ServerPackets {
...
@@ -371,7 +371,7 @@ public class ServerPackets {
// Write the entity's chat updated data
// Write the entity's chat updated data
buffer
.
writeString
(
chatData
.
entityId
);
buffer
.
writeString
(
chatData
.
entityId
);
if
(
sender
!=
null
)
{
if
(
sender
!=
null
&&
chatData
.
auto_generated
==
0
)
{
buffer
.
writeString
(
sender
.
getUuidAsString
());
buffer
.
writeString
(
sender
.
getUuidAsString
());
buffer
.
writeString
(
sender
.
getDisplayName
().
getString
());
buffer
.
writeString
(
sender
.
getDisplayName
().
getString
());
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment