Skip to content

Commit 4228bcd

Browse files
committed
Added a couple default plugins, incremented version
1 parent a88493f commit 4228bcd

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Eve.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
c.channels = ["#Eve"]
2727
c.nick = "Eve"
2828
c.user = "Eve"
29-
c.realname = "Eve 6.5.8"
29+
c.realname = "Eve 6.5.9"
3030

3131
## Below is the plugin block for Eve-Bot. Please be sure that all the plugins
3232
## that you want the bot to use are included in this block. If you want to
@@ -36,7 +36,8 @@
3636
## added, or transposed a colon or semicolon, or you didn't delete the options
3737
## for the plugin, located below in the options block.
3838

39-
c.plugins.plugins = [Cinch::Plugins::PluginManagement,
39+
c.plugins.plugins = [Cinch::Plugins::BotInfo,
40+
Cinch::Plugins::PluginManagement,
4041
Cinch::Plugins::Urban,
4142
Cinch::Plugins::Help,
4243
Cinch::Plugins::Seen,
@@ -50,6 +51,7 @@
5051
Cinch::Plugins::PrivateCP,
5152
Cinch::Plugins::PrivChanCP,
5253
Cinch::Plugins::FactCore,
54+
Cinch::Plugins::Fun,
5355
Cinch::Plugins::ActAI,
5456
Cinch::Plugins::UrlScraper,
5557
# Cinch::Plugins::Twitter,

bin/plugins.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## constant"
55

66
require 'redis'
7+
require_relative "../lib/plugins/bot_info"
78
require_relative "../lib/plugins/urban"
89
require_relative "../lib/plugins/help"
910
require_relative "../lib/plugins/seen"
@@ -17,6 +18,7 @@
1718
require_relative "../lib/plugins/private_cp"
1819
require_relative "../lib/plugins/priv_chan_cp"
1920
require_relative "../lib/plugins/fact_core"
21+
require_relative "../lib/plugins/fun"
2022
require_relative "../lib/plugins/act_ai"
2123
require_relative "../lib/plugins/url_scraper"
2224
require_relative "../lib/plugins/twitter"

lib/plugins/fact_core.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ module Cinch::Plugins
55
class FactCore
66
include Cinch::Plugin
77

8-
set :prefix, /^~/
98
set :plugin_name, 'factcore'
109
set :help, <<-USAGE.gsub(/^ {6}/, '')
1110
Gives a funny, and sometimes true fact

0 commit comments

Comments
 (0)