Skip to content

Commit

Permalink
Fix completely wrong start date
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPowerGamerBR committed Dec 18, 2024
1 parent 845b353 commit 2143e02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import kotlin.random.Random

object Christmas2024ReactionEvent : ReactionEvent() {
override val internalId: String = "christmas2024"
override val startsAt: Instant = ZonedDateTime.of(2024, 12, 3, 21, 0, 0, 0, Constants.LORITTA_TIMEZONE).toInstant()
override val startsAt: Instant = ZonedDateTime.of(2024, 12, 18, 21, 0, 0, 0, Constants.LORITTA_TIMEZONE).toInstant()
override val endsAt: Instant = ZonedDateTime.of(2024, 12, 25, 0, 0, 0, 0, Constants.LORITTA_TIMEZONE).toInstant()

private val toy1 = ReactionSet(
Expand Down

0 comments on commit 2143e02

Please sign in to comment.