Removed markdown to make everyone happy

This commit is contained in:
OfficialR3ido101 2023-12-12 16:35:22 +00:00
parent cb1dccbe50
commit 819ddeff0b
2 changed files with 8 additions and 7 deletions

View file

@ -103,7 +103,8 @@
}
for (var i = 0; i < messageParts.length; i++) {
messageFormatted.push(replaceFormatting(messageParts[i]));
//messageFormatted.push(replaceFormatting(messageParts[i]));
messageFormatted.push(messageParts[i])
}
for (var i = 0; i < messageFormatted.length; i++) {

View file

@ -127,7 +127,7 @@ function connectWebSocket(timeout) {
if (!muted["Grid"]) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: "(G) " + cmd.displayName,
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}
@ -462,7 +462,7 @@ function messageReceived(channel, message, sender) {
if (!muted["Local"]) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: "(L) " + cmd.displayName,
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}
@ -477,7 +477,7 @@ function messageReceived(channel, message, sender) {
if (!muted["Domain"]) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: "(D) " + cmd.displayName,
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}
@ -491,7 +491,7 @@ function messageReceived(channel, message, sender) {
if (!muted["Grid"]) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: "(G) " + cmd.displayName,
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}
@ -504,7 +504,7 @@ function messageReceived(channel, message, sender) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: cmd.displayName,
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}
@ -528,7 +528,7 @@ function messageReceived(channel, message, sender) {
Messages.sendLocalMessage(FLOOF_NOTIFICATION_CHANNEL, JSON.stringify({
sender: "(" + cmd.category + ")",
text: replaceFormatting(cmd.message),
text: cmd.message,
colour: {text: cmd.colour}
}));
}