run syncscripts.sh

autoop 1.10 -> 1.11
mail 2.92 -> 2.93
scriptassist 2022053100 -> 2023111700
This commit is contained in:
Ailin Nemui 2025-12-27 20:41:26 +01:00
commit d145f24c22
3 changed files with 265 additions and 144 deletions

View file

@ -5,7 +5,7 @@ use Irssi;
use strict;
use vars qw($VERSION %IRSSI);
$VERSION = "1.10";
$VERSION = "1.11";
%IRSSI = (
authors => 'Timo Sirainen & Jostein Kjønigsen',
name => 'autoop',
@ -98,10 +98,11 @@ sub load_autoops {
%opnicks = ();
open(CONF, "<", "$file") or return;
while (my $line = <CONF>) {
if ($line !=~ /^\s*$/) {
cmd_autoop($line);
$count++;
}
chomp($line);
if ($line !~ /^\s*$/) {
cmd_autoop($line);
$count++;
}
}
close(CONF);