Make poll votes clickable

This commit is contained in:
Austin Mayes 2018-08-18 21:57:48 -05:00
parent c80830b30f
commit df3bd6b76f
1 changed files with 1 additions and 0 deletions

View File

@ -232,6 +232,7 @@ public class PollCommands implements Commands {
} }
pollManager.startPoll(poll); pollManager.startPoll(poll);
Bukkit.getServer().broadcastMessage(Poll.boldAqua + poll.getInitiator() + Poll.normalize + " has started a poll " + poll.getDescriptionMessage()); Bukkit.getServer().broadcastMessage(Poll.boldAqua + poll.getInitiator() + Poll.normalize + " has started a poll " + poll.getDescriptionMessage());
Bukkit.broadcast(Poll.tutorialMessage());
} }
} }
} }