Compare commits

...

2 Commits

Author SHA1 Message Date
lamp 0121a48063 :/ 2026-03-18 03:16:05 -04:00
lamp 525346ddcf change getOwnParticipant()._id to user._id 2026-03-18 03:10:12 -04:00
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -8,7 +8,6 @@
{ "room": "✧𝓓𝓔𝓥 𝓡𝓸𝓸𝓶✧", "channel": "698736467559710740", "uri": "wss://backend.multiplayerpiano.net" },
{ "room": "test/awkward", "channel": "360556775860076544", "uri": "wss://backend.multiplayerpiano.net" },
{ "room": "test/fishing", "channel": "339613702472859659", "uri": "wss://backend.multiplayerpiano.net" },
{ "room": "cheez", "channel": "1483714895496089670", "uri": "wss://backend.multiplayerpiano.net" },
{ "room": "lobby", "channel": "339904195719200768", "uri": "wss://piano.ourworldofpixels.com" }
]
+1 -1
View File
@@ -78,7 +78,7 @@ global.createMPPbridge = async function createMPPbridge({room, channel, uri}) {
// MPP to Discord
gClient.on('a', async msg => {
if (msg.p._id == gClient.getOwnParticipant()._id) return;
if (msg.p._id == gClient.user._id) return;
var id = msg.p._id.substr(0,6);
var name = sanitizeName(msg.p.name);
var content = msg.a;