]> ruin.nu Git - ndwebbie.git/blobdiff - lib/NDWeb/Controller/Members.pm
Also signal bots on launch confirmations
[ndwebbie.git] / lib / NDWeb / Controller / Members.pm
index a77ec1eaddf1e734323b9baf07b7134f28fa4725..cfd6d536c62c5a432e66bf6a8c3d66b06ec37c31 100644 (file)
@@ -265,7 +265,7 @@ sub postircrequest : Local {
 INSERT INTO irc_requests (uid,channel,message) VALUES($1,$2,$3)
                });
                $query->execute($c->user->id,$c->req->param('channel'),$c->req->param('message'));
-               system 'killall','-USR1', 'irssi';
+               $c->signal_bots;
 
                $c->flash(reply => "Msg sent to: ".$c->req->param('channel'));
                $c->res->redirect($c->uri_for('ircrequest'));
@@ -279,6 +279,7 @@ sub points : Local {
        my ( $self, $c, $order ) = @_;
        my $dbh = $c->model;
 
+       $order //= 'total_points';
        if ($order ~~ /^((?:defense|attack|total|humor|scan|raid)_points)$/
                        || $order ~~ /^(defprio)$/){
                $order = "$1 DESC";
@@ -307,6 +308,7 @@ sub stats : Local {
        my ( $self, $c, $order ) = @_;
        my $dbh = $c->model;
 
+       $order //= 'score';
        if ($order ~~ /^(scre|value|xp|size|race)$/){
                $order = "$1rank";
        }else{
@@ -366,6 +368,11 @@ sub postintelmessage : Local {
                }
        }
 
+       my ($coords,$tick) = $c->model->selectrow_array(q{
+SELECT coords(x,y,z), tick() FROM current_planet_stats WHERE pid = $1
+               }, undef, $c->user->planet);
+
+       $c->req->param(message => "[i]Posted by $coords at tick $tick [/i]\n\n" . $c->req->param('message'));
        $c->forward('/forum/insertThread',[12]);
        $c->forward('/forum/insertPost',[$c->stash->{thread}]);
        $c->flash(intelmessage => 1);
@@ -567,6 +574,7 @@ sub postconfirmation : Local {
                }
                $dbh->commit;
                $c->flash(missions => \@missions);
+               $c->signal_bots;
        };
        if ($@){
                $dbh->rollback;