Renamed function.

This commit is contained in:
armored-dragon 2024-11-16 18:53:34 -06:00
parent 83373d0efb
commit bb91e8726f
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -112,7 +112,7 @@
if (!channels.includes(message.channel)) return;
// If message is local, and if player is too far away from location, do nothing.
if (message.channel == "local" && isCloseEnough(message.position)) return;
if (message.channel == "local" && isTooFar(message.position)) return;
// Format the timestamp
message.timeString = timeArray[0];
@ -147,7 +147,7 @@
Settings.setValue("ArmoredChat-Messages", messageHistory);
// Check to see if the message is close enough to the user
function isCloseEnough(messagePosition) {
function isTooFar(messagePosition) {
return Vec3.distance(MyAvatar.position, messagePosition) > maxLocalDistance;
}
}