Skip to content

Commit 24469d0

Browse files
SyntaxNyahclaude
andcommitted
Remove spurious BB packet on join and /move
BB is the AO2 bulletin board broadcast — sending it with the background name displayed "gs4" (or whatever the bg is) as a textbox popup on every join and room change. Only BN should be sent to set the background. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f676864 commit 24469d0

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

src/commands/registry.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ pub async fn change_area(session: &mut ClientSession, state: &Arc<ServerState>,
230230
session.send_packet("HP", &["1", &new_area.def_hp.to_string()]);
231231
session.send_packet("HP", &["2", &new_area.pro_hp.to_string()]);
232232
session.send_packet("BN", &[&bg]);
233-
session.send_packet("BB", &[&bg]);
234233

235234
let evi = new_area.evidence.clone();
236235
let evi_refs: Vec<&str> = evi.iter().map(|s| s.as_str()).collect();

src/protocol/handlers.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ async fn handle_rd(session: &mut ClientSession, state: &Arc<ServerState>) {
313313
session.send_packet("HP", &["1", &area.def_hp.to_string()]);
314314
session.send_packet("HP", &["2", &area.pro_hp.to_string()]);
315315
session.send_packet("BN", &[&bg]);
316-
session.send_packet("BB", &[&bg]);
317316
}
318317

319318
// Send DONE

0 commit comments

Comments
 (0)