blob: 4b430b9c55a6703cc5799cd45fa55524e848f42c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland
import at.hannibal2.skyhanni.utils.TimeUtils
import java.time.Month
object WinterAPI {
fun inWorkshop() = IslandType.WINTER.isInIsland()
fun isDecember() = TimeUtils.getCurrentLocalDate().month == Month.DECEMBER
}
|