parent
45413c643f
commit
7c08bf2442
@ -372,16 +372,16 @@ public class Hebdobot extends PircBot
|
||||
if (this.review.isOwner(sender))
|
||||
{
|
||||
CollectiveTopic topic = new CollectiveTopic(text.replaceFirst("##", "").trim());
|
||||
if (!this.review.isEmpty())
|
||||
{
|
||||
String participants = StringUtils.join(this.review.getParticipants(), " ");
|
||||
sendMessage(String.format("%% %s, on va passer à la suite : %s", participants, topic.getTitle()));
|
||||
}
|
||||
this.review.begin(topic);
|
||||
sendMessage("Sujet collectif : " + topic.getTitle());
|
||||
if (topic.getTitle().toLowerCase().contains("bloquage"))
|
||||
{
|
||||
sendMessage("% si rien à dire vous pouvez dire %ras");
|
||||
}
|
||||
else
|
||||
{
|
||||
sendMessage("% 1 minute max");
|
||||
}
|
||||
sendMessage("% 1 minute max");
|
||||
sendMessage("% si rien à signaler vous pouvez écrire %ras");
|
||||
sendMessage("% quand vous avez fini vous le dites par % fini");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -399,8 +399,14 @@ public class Hebdobot extends PircBot
|
||||
if (this.review.isOwner(sender))
|
||||
{
|
||||
IndividualTopic topic = new IndividualTopic(text.replaceFirst("#", "").trim());
|
||||
if (!this.review.isEmpty())
|
||||
{
|
||||
String participants = StringUtils.join(this.review.getParticipants(), " ");
|
||||
sendMessage(String.format("%% %s, on va passer à la suite : %s", participants, topic.getTitle()));
|
||||
}
|
||||
this.review.begin(topic);
|
||||
sendMessage("Sujet individuel : " + topic.getTitle());
|
||||
sendMessage("% si rien à signaler vous pouvez écrire %ras");
|
||||
sendMessage("% quand vous avez fini vous le dites par % fini");
|
||||
}
|
||||
else
|
||||
|
@ -159,6 +159,28 @@ public class Review
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if is empty.
|
||||
*
|
||||
* @return true, if is empty
|
||||
*/
|
||||
public boolean isEmpty()
|
||||
{
|
||||
boolean result;
|
||||
|
||||
if ((this.individualTopics.isEmpty()) && (this.collectiveTopics.isEmpty()))
|
||||
{
|
||||
result = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
result = false;
|
||||
}
|
||||
|
||||
//
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if is owner.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user