mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-19 18:39:35 +01:00
2b5ff48a4c
AntiFlood: Correct use of ignore list IgnoreList: Ignoring user without args now permanent instead of 5 mins Save time when ignore expires instead of seconds remaining Improve output of `ignore list` command for readability
21 lines
304 B
Perl
21 lines
304 B
Perl
# File: VERSION.pm
|
|
# Author: pragma_
|
|
#
|
|
# Purpose: Keeps track of bot version.
|
|
|
|
# $Id$
|
|
|
|
package PBot::VERSION;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
# These are set automatically by the build/commit script
|
|
use constant {
|
|
BUILD_NAME => "PBot",
|
|
BUILD_REVISION => 383,
|
|
BUILD_DATE => "2012-09-06",
|
|
};
|
|
|
|
1;
|