Addeded to "I'm a" text

This commit is contained in:
2026-06-12 05:44:09 +01:00
parent 615716d72e
commit 99131cea6f

View File

@ -18,9 +18,15 @@ const imaTexts = shuffle([
'I\'m an $ice skater',
'I\'m a $masochist',
'I\'m a $professional alcoholic',
'I\'m a $Vim addict'
'I\'m a $Vim addict',
'I\'m an $accidental UK shock collar provider',
'I play $Beat Saber',
'I play $VRChat',
'I\'m a $Blender user'
]);
var currentTab = null;
function shuffle(array) {
return array
.map(value => ({ value, sort: Maths.random() }))