X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Members.pm;h=027ac7c0c611bbd04a86f438cc03974875e26475;hb=fb91afb326b44a3e46fb92b060696aabc343e1cc;hp=05b7ac701103fd593abf74a19869faee5f54ce29;hpb=fbc70113998582851b1830f42eca62acfcf03dd3;p=NDIRC.git diff --git a/Members.pm b/Members.pm index 05b7ac7..027ac7c 100644 --- a/Members.pm +++ b/Members.pm @@ -66,7 +66,7 @@ SQL $f->execute(); my $calls = ""; while (my ($raid) = $f->fetchrow()){ - $calls .= " https://nd.ruin.nu/raids?raid=$raid |" + $calls .= " https://nd.ruin.nu/raids/view/$raid |" } $calls = "No open future raids" if ($f->rows == 0); chop($calls); @@ -78,7 +78,7 @@ sub checkPoints { my ($nick,$command) = @_; my $f; if ($nick){ - if (officer() || dc() || bc()){ + if (officer() || dc() || bc() || ia()){ $f = $ND::DBH->prepare("SELECT username, attack_points, defense_points, scan_points, humor_points FROM users WHERE username ILIKE ?"); }else{ $ND::server->command("msg $ND::target Only officers are allowed to check for others");