mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-25 21:39:27 +01:00
Ensure hint is reset for new question; auto-hint mode available in =cut block
This commit is contained in:
parent
d7040568bc
commit
6decfb7e6c
@ -12,6 +12,7 @@ use QStatskeeper;
|
||||
|
||||
my $CJEOPARDY_FILE = 'cjeopardy.txt';
|
||||
my $CJEOPARDY_DATA = 'data/cjeopardy.dat';
|
||||
my $CJEOPARDY_HINT = 'data/cjeopardy.hint';
|
||||
my $CJEOPARDY_SHUFFLE = 'data/cjeopardy.shuffle';
|
||||
|
||||
my $TIMELIMIT = 300;
|
||||
@ -108,6 +109,8 @@ print $fh "$a\n";
|
||||
print $fh scalar gettimeofday, "\n";
|
||||
close $fh;
|
||||
|
||||
unlink "$CJEOPARDY_HINT-$channel";
|
||||
|
||||
my $qstats = QStatskeeper->new;
|
||||
$qstats->begin;
|
||||
|
||||
@ -121,6 +124,12 @@ $qdata->{wrong_streak} = 0;
|
||||
$qstats->update_question_data($id, $qdata);
|
||||
$qstats->end;
|
||||
|
||||
close $semaphore;
|
||||
|
||||
=cut
|
||||
my $hint = `./cjeopardy_hint.pl candide $channel`;
|
||||
print $hint;
|
||||
=cut
|
||||
|
||||
sub shuffle_questions {
|
||||
my $return_index = shift @_;
|
||||
|
Loading…
Reference in New Issue
Block a user