Removed ExOlympiadMyRankingInfo month adjustment.

Contributed by Enryu.
This commit is contained in:
MobiusDevelopment
2022-01-21 03:12:52 +00:00
parent 10fa4cf52b
commit 698d2627e3
8 changed files with 132 additions and 236 deletions

View File

@@ -61,15 +61,7 @@ public class ExOlympiadMyRankingInfo implements IClientOutgoingPacket
int year = calendar.get(Calendar.YEAR);
// Add one to month {0 - 11}
int month = calendar.get(Calendar.MONTH) + 1;
if (month == 1)
{
year--;
month = 12;
}
else
{
month--;
}
int currentPlace = 0;
int currentWins = 0;
int currentLoses = 0;