| IRC-Bot-Hangman documentation | Contained in the IRC-Bot-Hangman distribution. |
IRC::Bot::Hangman::Response::Profanity - Profanity hangman responses
See IRC::Bot::Hangman
This module is a plugin engine providing responses when a profanity has been muttered.
This plugin name - 'profanity'
List of responses per type
Pierre Denis <pierre@itrelease.net>
http://www.itrelease.net/
Copyright 2005 IT Release Ltd - All Rights Reserved.
This module is released under the same license as Perl itself.
| IRC-Bot-Hangman documentation | Contained in the IRC-Bot-Hangman distribution. |
package IRC::Bot::Hangman::Response::Profanity; use warnings::register; use strict;
sub name () { 'profanity' }
sub responses { return { profanity => [ 'No profanity please', 'This is a rather rude comment', 'Are you being rude?', 'This is shocking', ], }; } 1;