Skip to content

Commit e49131f

Browse files
committed
Updates
1 parent 9f3263c commit e49131f

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

server-src/commands.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,10 @@ class CommandHandler {
373373
var randomClient =
374374
allClients[Math.floor(Math.random(allClients.length - 1))];
375375
if (args[0]) {
376-
randomClient = searchUsersByKey(args[0], senderClient);
376+
searchUsersByKey(args[0], senderClient).forEach((client) => {
377+
sendClientCommand(client, "breakdance");
378+
});
379+
return;
377380
}
378381
sendClientCommand(randomClient, "breakdance");
379382
},

src/chat/interface/roomsettings.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ var dom = elements.createElementsFromJSON([
209209
{
210210
event: "change",
211211
func: async function () {
212+
this.disabled = true;
212213
var response = await fetch(
213214
accountHelper.getServerURL() + "/rooms/rename",
214215
{
@@ -219,6 +220,7 @@ var dom = elements.createElementsFromJSON([
219220
}),
220221
}
221222
);
223+
this.disabled = false;
222224
},
223225
},
224226
],

src/randomquotes.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"We sacrificed doing work to bring you this site."
21
"Our GPAs died for this. Use it wisely."
32
"Many assignments were harmed in the making of this platform."
43
"Someone had to fail their midterms to bring you this. It was us."
@@ -33,7 +32,6 @@
3332
"Our notebooks are empty, but our servers are full."
3433
"A monument to academic irresponsibility."
3534
"Instead of writing essays, we wrote code."
36-
"We learned HTML, not history."
3735
"The cause of several concerned parent-teacher conferences."
3836
"Every failed quiz added a new feature to this website."
3937
"We closed our textbooks so we could open this site for you."

wpstatic/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"timestamp":"1761845595582"}
1+
{"timestamp":"1761911048711"}

0 commit comments

Comments
 (0)