From: Michael Andreen Date: Sun, 9 Sep 2007 20:36:21 +0000 (+0200) Subject: Revert "BUGFIX: hour is 0 at midnight, so has to account for that" X-Git-Url: https://ruin.nu/git/?a=commitdiff_plain;h=ac65e241f748773959b94d66691ee93019fcae84;p=ndwebbie.git 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.. --- 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;