mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-05 03:29:33 +01:00
Spinach: Eject players who have missed too many inputs
This commit is contained in:
parent
e171fe580c
commit
782a554fce
@ -300,6 +300,8 @@ sub spinach_cmd {
|
||||
return "Usage: spinach edit <question id> [key] [value]";
|
||||
}
|
||||
|
||||
$id =~ s/,//g;
|
||||
|
||||
my $question;
|
||||
foreach my $q (@{$self->{questions}->{questions}}) {
|
||||
if ($q->{id} == $id) {
|
||||
@ -562,7 +564,7 @@ sub spinach_cmd {
|
||||
$votes_needed = "Skipping...";
|
||||
}
|
||||
|
||||
return "/msg $self->{channel} $nick has voted to skip this question! $votes_needed";
|
||||
return "/msg $self->{channel} $color{red}$nick has voted to skip this question! $color{reset}$votes_needed";
|
||||
} else {
|
||||
return "$nick: This command can be used only during the \"submit lies\" stage.";
|
||||
}
|
||||
@ -774,10 +776,27 @@ sub add_new_suggestions {
|
||||
sub run_one_state {
|
||||
my $self = shift;
|
||||
|
||||
if (not @{$self->{state_data}->{players}} and $self->{current_state} =~ /r\dq\d/) {
|
||||
if ($self->{current_state} =~ /r\dq\d/) {
|
||||
my $removed = 0;
|
||||
for (my $i = 0; $i < @{$self->{state_data}->{players}}; $i++) {
|
||||
if ($self->{state_data}->{players}->[$i]->{missedinputs} >= 3) {
|
||||
$self->{pbot}->{conn}->privmsg($self->{channel}, "$color{red}$self->{state_data}->{players}->[$i]->{name} has missed too many inputs and has been ejected from the game!$color{reset}");
|
||||
splice @{$self->{state_data}->{players}}, $i--, 1;
|
||||
$removed = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if ($removed) {
|
||||
if ($self->{state_data}->{current_player} >= @{$self->{state_data}->{players}}) {
|
||||
$self->{state_data}->{current_player} = @{$self->{state_data}->{players}} - 1
|
||||
}
|
||||
}
|
||||
|
||||
if (not @{$self->{state_data}->{players}}) {
|
||||
$self->{pbot}->{conn}->privmsg($self->{channel}, "$color{bold}All players have left the game!$color{reset}");
|
||||
$self->{current_state} = 'nogame';
|
||||
}
|
||||
}
|
||||
|
||||
my $current_state = $self->{current_state};
|
||||
my $state_data = $self->{state_data};
|
||||
|
Loading…
Reference in New Issue
Block a user