Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsLeapMonth() [2/2]

override bool System.Globalization.EastAsianLunisolarCalendar.IsLeapMonth ( int year,
int month,
int era )
inlineinherited

Definition at line 462 of file EastAsianLunisolarCalendar.cs.

463 {
464 year = CheckYearMonthRange(year, month, era);
465 int yearInfo = GetYearInfo(year, 0);
466 if (yearInfo != 0)
467 {
468 return month == yearInfo + 1;
469 }
470 return false;
471 }
int GetYearInfo(int LunarYear, int Index)

References System.Globalization.EastAsianLunisolarCalendar.CheckYearMonthRange(), System.Globalization.EastAsianLunisolarCalendar.GetYearInfo(), and System.year.