mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-05 03:29:33 +01:00
Battleship: prevent minor hiccup in ultra-fast-paced movement
This commit is contained in:
parent
d5ce7940fe
commit
c6e7b7bf6a
@ -289,7 +289,7 @@ sub battleship_cmd {
|
||||
when ('bomb') {
|
||||
$self->{pbot}->{logger}->log("Battleship: bomb state: $self->{current_state}\n" . Dumper $self->{state_data});
|
||||
|
||||
if ($self->{current_state} ne 'playermove') {
|
||||
if ($self->{current_state} ne 'playermove' and $self->{current_state} ne 'checkplayer') {
|
||||
return "$nick: It's not time to do that now.";
|
||||
}
|
||||
|
||||
@ -316,8 +316,10 @@ sub battleship_cmd {
|
||||
return "$nick: Usage: battleship bomb <location>; <location> must be in the form of A15, B3, C9, etc.";
|
||||
}
|
||||
|
||||
$arguments = uc $arguments;
|
||||
|
||||
my ($x, $y);
|
||||
($x) = uc($arguments) =~ m/^(.)/;
|
||||
($x) = $arguments =~ m/^(.)/;
|
||||
($y) = $arguments =~ m/^.(.*)/;
|
||||
|
||||
$x = ord($x) - 65;;
|
||||
|
Loading…
Reference in New Issue
Block a user