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
17b1c69c
Commit
17b1c69c
authored
Jul 15, 2024
by
Jonathan Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extended click sounds to 12 blocks away (from 8)
parent
ada10af7
Pipeline
#12671
passed with stages
in 2 minutes 4 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
CHANGELOG.md
CHANGELOG.md
+11
-10
ClientPackets.java
src/client/java/com/owlmaddie/network/ClientPackets.java
+1
-1
No files found.
CHANGELOG.md
View file @
17b1c69c
...
...
@@ -7,20 +7,21 @@ All notable changes to **CreatureChat** are documented in this file. The format
## [Unreleased]
### Added
-
New
whitelist / blacklist Minecraft commands
, to show and hide chat bubbles based on entity type
-
New
S2C packets
to send whitelist / blacklist changes on login and after commands are executed
-
Added
UNFLEE behavior
(to stop fleeing from a player)
-
Added support for
non path aware entities to FLEE
(i.e. Ghast)
-
Added
new LLM tests
for UNFLEE
-
New
**whitelist / blacklist**
Minecraft
**commands**
, to show and hide chat bubbles based on entity type
-
New
**S2C packets**
to send whitelist / blacklist changes on login and after commands are executed
-
Added
**UNFLEE behavior**
(to stop fleeing from a player)
-
Added support for
**non path aware**
entities to
**FLEE**
(i.e. Ghast)
-
Added
**new LLM tests**
for UNFLEE
### Changed
-
Chat Bubble
rendering & interacting is now dependent on whitelist / blacklist
config
-
Improved client
render performance
(only query nearby entities every 3rd call)
-
Chat Bubble
**rendering**
& interacting is now dependent on
**whitelist / blacklist**
config
-
Improved client
**render performance**
(only query nearby entities every 3rd call)
-
Fixed a
**crash with FLEE**
when non-path aware entities (i.e. Ghast) attempted to flee.
-
Fixed certain behaviors from colliding with others (i.e. mutual exclusive ones)
-
Extended
**click sounds**
to 12 blocks away (from 8)
-
Fixed certain
**behaviors**
from colliding with others (i.e.
**mutual exclusive**
ones)
-
Updated README.md with new video thumbnail, and simplified text, added spoiler to install instructions
-
Large
refactor of Minecraft commands
(and how --config args are parsed)
-
Fixed
CurseForge deploy script
to be much faster, and correctly lookup valid Type and Version IDs
-
Large
**refactor**
of Minecraft
**commands**
(and how --config args are parsed)
-
Fixed
**CurseForge deploy script**
to be much faster, and correctly lookup valid Type and Version IDs
## [1.0.7] - 2024-07-03
...
...
src/client/java/com/owlmaddie/network/ClientPackets.java
View file @
17b1c69c
...
...
@@ -214,7 +214,7 @@ public class ClientPackets {
private
static
void
playNearbyUISound
(
MinecraftClient
client
,
Entity
player
,
float
maxVolume
)
{
// Play sound with volume based on distance
int
distance_squared
=
6
4
;
int
distance_squared
=
14
4
;
if
(
client
.
player
!=
null
)
{
double
distance
=
client
.
player
.
squaredDistanceTo
(
player
.
getX
(),
player
.
getY
(),
player
.
getZ
());
if
(
distance
<=
distance_squared
)
{
...
...
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