bot(roblox): smol adjustments
vi did:web:vt3e.cat
Fri, 03 Jul 2026 19:22:02 +0100
1 files changed,
3 insertions(+),
3 deletions(-)
M
apps/bot/src/feats/roblox/search.ts
→
apps/bot/src/feats/roblox/search.ts
@@ -40,7 +40,7 @@ if (exactMatches.length > 0) {
lines.push("### Exact Matches"); for (const u of exactMatches) { lines.push( - `* **${u.displayName}** \`@${u.name}\` — [View Profile](https://roblox.com/users/${u.id}/profile)`, + `* **${u.displayName}** \`@${u.name}\` - [View Profile](https://roblox.com/users/${u.id}/profile)`, ); } if (otherMatches.length > 0) {@@ -52,12 +52,12 @@ if (otherMatches.length > 0) {
if (exactMatches.length > 0) { lines.push("### Other Matches"); } - const displayLimit = 10; + const displayLimit = 25; const displayOthers = otherMatches.slice(0, displayLimit); for (const u of displayOthers) { lines.push( - `* ${u.displayName} \`@${u.name}\` — [View Profile](https://roblox.com/users/${u.id}/profile)`, + `* ${u.displayName} \`@${u.name}\` - [View Profile](https://roblox.com/users/${u.id}/profile)`, ); }