Skip to content

Commit

Permalink
Remove [TM] in StatTrak
Browse files Browse the repository at this point in the history
  • Loading branch information
stdcall0 committed Apr 16, 2024
1 parent c215cf4 commit 883ee8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cs_casesim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export class CSCaseSimPlugin extends Plugin {
let name = `${item.name} (${float})`;
if (st == CS.StatTrak.StatTrak) {
if (name.includes('(★)'))
name = name.replace('(★)', '(★ StatTrak)');
name = name.replace('(★)', '(★ StatTrak)');
else
name = name.replace(' |', '(StatTrak) |');
name = name.replace(' |', '(StatTrak) |');
}
return name;
}
Expand Down

0 comments on commit 883ee8c

Please sign in to comment.