update tips number
Some checks are pending
Linting and Testing / Run Linters (push) Waiting to run
Linting and Testing / Build project (push) Waiting to run
Linting and Testing / Build Docker (push) Waiting to run

downside is we wont show other language's tips that dont have eng translations
This commit is contained in:
Pas 2025-10-25 00:47:57 -06:00
parent 4d1dbe9b3d
commit bd21f7d104

View file

@ -183,7 +183,7 @@ export function ScrapingPartInterruptButton() {
export function Tips() {
const { t } = useTranslation();
const [tip] = useState(() => {
const randomIndex = Math.floor(Math.random() * 21) + 1;
const randomIndex = Math.floor(Math.random() * 11) + 1;
return t(`player.scraping.tips.${randomIndex}`);
});