Add some type of indicator that shows how much times osu! supporter was bought or gifted.
abraker wrote:
On the new website that is currently shown by the amount of hearts on your supporter badge
I think it only goes up to three, and I am not entirely sure how they are being counted.Aiseca wrote:
Let's say, I bought 3, then 1 as a gift,abraker wrote:
On the new website that is currently shown by the amount of hearts on your supporter badge
Then hearts should be 4 on the badge?
sosteneshion wrote:
1 heart: less than a year
2 hearts: between 1 and 5 years
3 hearts more than 5 years
Isn't it?
abraker wrote:
I think it only goes up to three, and I am not entirely sure how they are being counted.
if (supportLength not in cache)
{
supportLength = 0;
foreach (supporterTags as supporterTag)
{
if (supporterTag->cancel is true) supportLength -= supporterTag->length;
else supportLength += supporterTag->length;
}
cache(supportLength);
}
if (not osu_supporter) return 0;
if (supportLength < 12) return 1;
if (supportLength < 5 * 12) return 2;
/* else */ return 3;