mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-19 18:39:35 +01:00
Allow multiple undos on one line
This commit is contained in:
parent
26c84fa621
commit
244e91b3fd
@ -119,10 +119,11 @@ my $subcode = $code;
|
|||||||
my $got_undo = 0;
|
my $got_undo = 0;
|
||||||
my $got_sub = 0;
|
my $got_sub = 0;
|
||||||
|
|
||||||
if($subcode =~ s/^\s*undo//) {
|
while($subcode =~ s/^\s*(and)?\s*undo//) {
|
||||||
splice @last_code, 0, 1;
|
splice @last_code, 0, 1;
|
||||||
if(not defined $last_code[0]) {
|
if(not defined $last_code[0]) {
|
||||||
print "$nick: No more undos remaining.\n";
|
print "$nick: No more undos remaining.\n";
|
||||||
|
exit 0;
|
||||||
} else {
|
} else {
|
||||||
$code = $last_code[0];
|
$code = $last_code[0];
|
||||||
$got_undo = 1;
|
$got_undo = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user