mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 06:33:09 +02:00
Fix Logspam.
Channel check moved to first check to prevent parsing messages not for us. Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
21180144a6
commit
4394044646
2 changed files with 4 additions and 7 deletions
|
@ -1,10 +1,9 @@
|
|||
# Armored Chat
|
||||
|
||||
Armored Chat is a light-weight alternative chat application that extends the existing chat features.
|
||||
Armored Chat is a light-weight chat application that allows members of a world to communicate with text.
|
||||
|
||||
## Features
|
||||
|
||||
- (wip) Drop-in replacement for Fluffy chat
|
||||
- (wip) E2EE Direct messages
|
||||
- (wip) Group chats
|
||||
|
||||
|
@ -14,7 +13,6 @@ Armored Chat is a light-weight alternative chat application that extends the exi
|
|||
|
||||
TODO:
|
||||
|
||||
- Algorithm
|
||||
- Key exchange
|
||||
- When and where
|
||||
- How
|
||||
|
|
|
@ -82,12 +82,12 @@
|
|||
Messages.messageReceived.connect(receivedMessage);
|
||||
|
||||
function receivedMessage(channel, message) {
|
||||
console.log(`Received message:\n${message}`);
|
||||
var message = JSON.parse(message);
|
||||
|
||||
channel = channel.toLowerCase();
|
||||
if (channel !== "chat") return;
|
||||
|
||||
console.log(`Received message:\n${message}`);
|
||||
var message = JSON.parse(message);
|
||||
|
||||
message.channel = message.channel.toLowerCase();
|
||||
|
||||
// For now, while we are working on superseding Floof, we will allow compatibility with it.
|
||||
|
@ -98,7 +98,6 @@
|
|||
// Check the channel is valid
|
||||
if (!channels.includes(message.channel)) return;
|
||||
|
||||
// FIXME: Not doing distance check?
|
||||
// If message is local, and if player is too far away from location, don't do anything
|
||||
if (channel === "local" && Vec3.distance(MyAvatar.position, message.position) < max_local_distance) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue