Live location tracking and playback for the game "manhunt"
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove confusing characters from room code pool

Ben C 6e0f092f b218c8d3

+2 -1
+2 -1
manhunt-signaling/src/state.rs
··· 66 66 } 67 67 } 68 68 69 - const ROOM_CODE_CHAR_POOL: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; 69 + // Removed O, 0, I, and 1 to avoid confusing characters 70 + const ROOM_CODE_CHAR_POOL: &[u8] = b"ABCDEFGHJKLMNPQRSTUVWXYZ23456789"; 70 71 const ROOM_CODE_LEN: usize = 6; 71 72 const MAX_ROOM_TRIES: usize = 25; 72 73