Commit Diff
Diff:
f35ecfb92e164bb61b1b161cbb0f96b7ea548c6a
37ca25b658006ff7782dbad70f1f8ee6e3e87a14
37ca25b658006ff7782dbad70f1f8ee6e3e87a14
Commit:
37ca25b658006ff7782dbad70f1f8ee6e3e87a14
Tree:
c90b6ea13cfa866e6da94cc815cf33357779815f
Committer:
jrmu <jrmu@ircnow.org>
Date:
Mon Oct 12 04:07:06 2020
UTC
Message:
Fixed terms
--- BNC.pm
+++ BNC.pm
@@ -30,7 +30,7 @@ sub init {
$zncdir = $main::conf{zncdir};
$znclog = $main::conf{znclog} || "$zncdir/.znc/moddata/adminlog/znc.log";
$hostname = $main::conf{hostname};
- $terms = $main::conf{terms} || "IRCNow is a Christian network. Rules: no profanity, no porn, no illegal drugs, no gambling, no slander, no warez, no promoting violence, no spam, illegal cracking, or DDoS. Only one account per person. Don't share passwords. Religious or political content may be moderated. Full terms: https://ircnow.org/terms.php";
+ $terms = $main::conf{terms};
#dependencies for figlet
unveil("/usr/local/bin/figlet", "rx") or die "Unable to unveil $!";
unveil("/usr/lib/libc.so.95.1", "r") or die "Unable to unveil $!";
--- botnow.pl
+++ botnow.pl
@@ -86,7 +86,7 @@ use constant {
$conf{verbose} = $conf{verbose} || ERRORS;
# Terms of Service; don't edit lines with the word EOF
-$conf{terms} = $conf{terms} || "IRCNow is a Christian network. Rules: no profanity, no porn, no illegal drugs, no gambling, no slander, no warez, no promoting violence, no spam, illegal cracking, or DDoS. Only one account per person. Don't share passwords. Religious or political content may be moderated. Full terms: https://ircnow.org/terms.php . Do you agree? (yes/no)";
+$conf{terms} = $conf{terms} || "IRCNow is a Christian network. Rules: no profanity, no porn, no illegal drugs, no gambling, no slander, no warez, no promoting violence, no spam, illegal cracking, or DDoS. Only one account per person. Don't share passwords. Religious or political content may be moderated. Full terms: https://ircnow.org/terms.php";
if(defined($conf{die})) { die $conf{die}; }