mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-23 19:22:40 +01:00
CGrammar: Change "Repeatedly never" to "Never repeatedly"
This commit is contained in:
parent
bea4480cf3
commit
69eca9a336
@ -13,7 +13,7 @@ use warnings;
|
||||
# These are set automatically by the build/commit script
|
||||
use constant {
|
||||
BUILD_NAME => "PBot",
|
||||
BUILD_REVISION => 726,
|
||||
BUILD_REVISION => 727,
|
||||
BUILD_DATE => "2014-07-10",
|
||||
};
|
||||
|
||||
|
@ -262,7 +262,7 @@ iteration_statement:
|
||||
if (length $expression) {
|
||||
if ($expression =~ /^(\d+)$/) {
|
||||
if($expression == 0) {
|
||||
$return .= "Repeatedly never ^L";
|
||||
$return .= "Never repeatedly ^L";
|
||||
} else {
|
||||
$return .= "Repeatedly ^L";
|
||||
}
|
||||
@ -285,7 +285,7 @@ iteration_statement:
|
||||
{
|
||||
if ($item{expression} =~ /(^\d+$)/) {
|
||||
if ($1 == 0) {
|
||||
$return = "Repeatedly never ^L";
|
||||
$return = "Never repeatedly ^L";
|
||||
} else {
|
||||
$return = "Repeatedly ^L";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user