Merge branch '1.20.2' into 1.20.4

This commit is contained in:
Sollace 2025-01-05 12:30:03 +01:00
commit c3b829ecbf
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -23,10 +23,9 @@ public class DeerAntlers extends WearableGear {
dayChecked = true;
Calendar cal = Calendar.getInstance();
dayResult = cal.get(Calendar.MONTH) == Calendar.DECEMBER
&& cal.get(Calendar.DAY_OF_MONTH) == 25;
&& Math.abs(cal.get(Calendar.DAY_OF_MONTH) - 25) < 2;
}
return dayResult;
}