]> ruin.nu Git - ndwebbie.git/commitdiff
Revert "BUGFIX: hour is 0 at midnight, so has to account for that"
authorMichael Andreen <harv@ruin.nu>
Sun, 9 Sep 2007 20:36:21 +0000 (22:36 +0200)
committerMichael Andreen <harv@ruin.nu>
Sun, 9 Sep 2007 20:36:21 +0000 (22:36 +0200)
This reverts commit 871ec55c66e558ed1ab2e103f377ad06a69a9861.

This wasn't a bug, it works exactly the same, stupid me..

ND/Web/Pages/EditRaid.pm

index 0852e8e6c778243a4a3c5584433ee6d98e776252..e701f1d2d418492ee9912fd9e05dc4d88c2e1968 100644 (file)
@@ -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;