From ac65e241f748773959b94d66691ee93019fcae84 Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Sun, 9 Sep 2007 22:36:21 +0200 Subject: [PATCH] Revert "BUGFIX: hour is 0 at midnight, so has to account for that" This reverts commit 871ec55c66e558ed1ab2e103f377ad06a69a9861. This wasn't a bug, it works exactly the same, stupid me.. --- ND/Web/Pages/EditRaid.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ND/Web/Pages/EditRaid.pm b/ND/Web/Pages/EditRaid.pm index 0852e8e..e701f1d 100644 --- a/ND/Web/Pages/EditRaid.pm +++ b/ND/Web/Pages/EditRaid.pm @@ -253,7 +253,7 @@ sub render_body { }else{ $BODY->param(Waves => 3); my @time = gmtime; - $BODY->param(LandingTick => $self->{TICK} + 23 - $time[2] + 13); + $BODY->param(LandingTick => $self->{TICK} + 24 - $time[2] + 12); } $BODY->param(Error => $error); return $BODY; -- 2.39.2