From 147471115ead1718b3be4137b9a9e6c450c4f392 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 11 Mar 2018 20:41:50 -0700 Subject: [PATCH] Spinach: Update default questions to trivia.json --- PBot/Plugins/Spinach.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Plugins/Spinach.pm b/PBot/Plugins/Spinach.pm index d1c91b8d..fb70b955 100644 --- a/PBot/Plugins/Spinach.pm +++ b/PBot/Plugins/Spinach.pm @@ -47,7 +47,7 @@ sub initialize { $self->{pbot}->{event_dispatcher}->register_handler('irc.kick', sub { $self->on_kick(@_) }); $self->{leaderboard_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/spinachlb.sqlite3'; - $self->{questions_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/spinachq.json'; + $self->{questions_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/trivia.json'; $self->{stopwords_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/stopwords'; $self->create_database;