all repos — stealth-developers @ 42558204ec0d0eb73b4b38be82996b8e7948d2ce

bot(roblox): smol adjustments
vi did:web:vt3e.cat
Fri, 03 Jul 2026 19:22:02 +0100
commit

42558204ec0d0eb73b4b38be82996b8e7948d2ce

parent

9f330c936258e221eed58cf587262ebb4d796ba8

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M apps/bot/src/feats/roblox/search.tsapps/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)`, ); }