tangled
alpha
login
or
join now
bwc9876.dev
/
manhunt-app
0
fork
atom
Live location tracking and playback for the game "manhunt"
0
fork
atom
overview
issues
pulls
1
pipelines
Remove confusing characters from room code pool
bwc9876.dev
1 week ago
6e0f092f
b218c8d3
verified
This commit was signed with the committer's
known signature
.
bwc9876.dev
SSH Key Fingerprint:
SHA256:DanMEP/RNlSC7pAVbnXO6wzQV00rqyKj053tz4uH5gQ=
+2
-1
1 changed file
expand all
collapse all
unified
split
manhunt-signaling
src
state.rs
+2
-1
manhunt-signaling/src/state.rs
···
66
66
}
67
67
}
68
68
69
69
-
const ROOM_CODE_CHAR_POOL: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
69
69
+
// Removed O, 0, I, and 1 to avoid confusing characters
70
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