diff --git a/frontend/src/dialogues/chat/MultiChatDialog.vue b/frontend/src/dialogues/chat/MultiChatDialog.vue index dabe7ff..0f9728a 100644 --- a/frontend/src/dialogues/chat/MultiChatDialog.vue +++ b/frontend/src/dialogues/chat/MultiChatDialog.vue @@ -599,12 +599,7 @@ export default { }); }, getRaceLimit() { - try { - const ls = localStorage.getItem('chatWsRaceMax'); - const n = parseInt(ls, 10); - if (!isNaN(n) && n > 0) return Math.min(n, 6); - } catch (_) { } - return this.raceLimit || 1; + return 1; }, spawnCandidate(url, protocols) { if (!this.opened) return;