@@ -356,11 +356,12 @@ export async function handleLogin () {
356356
357357 subtabElement . innerHTML = `
358358 ${ user ? `Hello, ${ user } ` : 'Hello' } !\n
359- Your personal Quark bonus is ${ format ( personalBonus , 2 , true ) } %, computed by the following:
360- Donator Bonuses (Multiplicative with other bonuses):
361- <span style="color: orchid">Transcended Baller</span> [+2%] - ${ hasTier1 ? checkMark ( 2 ) : exMark }
362- <span style="color: green">Reincarnated Baller</span> [+3%] - ${ hasTier2 ? checkMark ( 3 ) : exMark }
363- <span style="color: orange">ASCENDED Baller</span> [+4%] - ${ hasTier3 ? checkMark ( 4 ) : exMark }
359+ Your personal Quark bonus is ${ format ( personalBonus , 2 , true ) } %, from the following sources:
360+
361+ Subscription Bonuses:
362+ <span style="color: orchid">Transcended Baller (or higher)</span> [+2%] - ${ hasTier1 ? checkMark ( 2 ) : exMark }
363+ <span style="color: green">Reincarnated Baller (or higher)</span> [+3%] - ${ hasTier2 ? checkMark ( 3 ) : exMark }
364+ <span style="color: orange">ASCENDED Baller (or higher)</span> [+4%] - ${ hasTier3 ? checkMark ( 4 ) : exMark }
364365 <span style="color: lightgoldenrodyellow">OMEGA Baller</span> [+5%] - ${ hasTier4 ? checkMark ( 5 ) : exMark }
365366 <span style="color: #f47fff">Discord Server Booster</span> [+1%] - ${ boosted ? checkMark ( 1 ) : exMark }
366367
@@ -369,6 +370,7 @@ export async function handleLogin () {
369370 <span>${ i18next . t ( 'account.eventBonuses' ) } :</span>
370371 </div>
371372 <div class="event-bonuses-content" id="eventBonusesContent">
373+ ${ i18next . t ( 'account.eventBonusMulti' ) }
372374 <span style="color: #ffcc00">Thanksgiving 2023</span> [+0.2%] - ${
373375 discord && account . member . roles ?. includes ( THANKSGIVING_2023 ) ? checkMark ( 0.2 ) : exMark
374376 }
@@ -405,12 +407,6 @@ export async function handleLogin () {
405407 <span style="color: lime"> Being <span style="color: lightgoldenrodyellow"> YOURSELF! </span></span> [+1%] - ${
406408 checkMark ( 1 )
407409 }
408-
409- The current maximum is 16%, by being a Discord server booster and an OMEGA Baller!
410-
411- More will be incorporated both for general accounts and supporters of the game shortly.
412- Become a supporter of development via the link below, and get special bonuses,
413- while also improving the Global Bonus for all to enjoy!
414410 ` . trim ( )
415411
416412 const allPlatforms = [ 'discord' , 'patreon' ]
0 commit comments