修复误将 /o 命令写为 /on 命令的问题

This commit is contained in:
A.C.Sukazyo Eyre 2022-02-09 12:36:12 +08:00
parent 32d7fa7374
commit e3c026d16a
Signed by: Eyre_S
GPG Key ID: EFB47D98FE082FAD
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
## Core ## Core
VERSION = 0.5.0.6 VERSION = 0.5.1.0
# dependencies # dependencies

View File

@ -4,6 +4,6 @@ package cc.sukazyo.cono.morny;
* the final field that will be updated by gradle automatically. * the final field that will be updated by gradle automatically.
*/ */
public class GradleProjectConfigures { public class GradleProjectConfigures {
public static final String VERSION = "0.5.0.6"; public static final String VERSION = "0.5.1.0";
public static final long COMPILE_TIMESTAMP = 1644378359640L; public static final long COMPILE_TIMESTAMP = 1644381263800L;
} }

View File

@ -143,7 +143,7 @@ public class MornyCommands {
/// ///
private static class ON implements ITelegramCommand { private static class ON implements ITelegramCommand {
@Nonnull @Override public String getName () { return "/on"; } @Nonnull @Override public String getName () { return "/o"; }
@Nullable @Nullable
@Override public String[] getAliases () { return null; } @Override public String[] getAliases () { return null; }
@Nonnull @Override public String getParamRule () { return ""; } @Nonnull @Override public String getParamRule () { return ""; }