3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-12 15:09:33 +01:00

Set generic default export websites in pbot.pl

This commit is contained in:
Pragmatic Software 2014-05-16 04:11:25 +00:00
parent cd54dcb573
commit 591dbd70ab
2 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 576,
BUILD_REVISION => 577,
BUILD_DATE => "2014-05-15",
};

View File

@ -67,11 +67,11 @@ my %config = (
# may be viewed in a browser.
# -----------------------------------------------------
export_factoids_path => "$bothome/factoids.html",
export_factoids_site => 'http://blackshell.com/~msmud/candide/factoids.html',
export_factoids_path => "$bothome/factoids.html", # change to a path in your webroot
export_factoids_site => 'http://your.website.com/factoids.html',
export_quotegrabs_path => "$bothome/quotegrabs.html",
export_quotegrabs_site => 'http://blackshell.com/~msmud/candide/quotegrabs.html',
export_quotegrabs_path => "$bothome/quotegrabs.html", # change to a path in your webroot
export_quotegrabs_site => 'http://your.website.com/quotegrabs.html',
# -----------------------------------------------------
# You shouldn't need to change anything below this line.