Restricted the use of !debut command when review is already started

(#3689).
This commit is contained in:
Christian P. MOMON 2019-05-03 16:18:27 +02:00
parent 29e878a02a
commit a9057039c4
1 changed files with 23 additions and 16 deletions

View File

@ -54,6 +54,12 @@ public class StartReviewHook extends Hook
else else
{ {
// Start. // Start.
if (bot.getReview() != null)
{
bot.sendMessage("% " + sender + ", une revue est déjà en cours.");
}
else
{
if (bot.getCronManager() != null) if (bot.getCronManager() != null)
{ {
try try
@ -73,6 +79,7 @@ public class StartReviewHook extends Hook
"% rappel : toute ligne commençant par % sera considérée comme un commentaire et non prise en compte dans la synthèse"); "% rappel : toute ligne commençant par % sera considérée comme un commentaire et non prise en compte dans la synthèse");
bot.sendMessage("% pour connaître le point courant, taper !courant"); bot.sendMessage("% pour connaître le point courant, taper !courant");
} }
}
result = true; result = true;
} }