Fix Twitch+ Mps not properly showing information via MOTD

This commit is contained in:
Alexander Meech 2017-02-09 18:47:07 -05:00 committed by cnr
parent 5e5b607fc8
commit 1736b198f2
1 changed files with 9 additions and 9 deletions

View File

@ -935,16 +935,16 @@ public class ArcadeManager extends MiniPlugin implements IRelation
+ "|" + ((_game == null || _game.WorldData == null) ? "Unknown" : _game.WorldData.MapName);
if (_gameHostManager.isPrivateServer() && _gameHostManager.hasRank(Rank.TWITCH))
{
extrainformation += "|HostRank." + _gameHostManager.getHostRank().toString();
//Always Joinable
// if (_game != null && _game.JoinInProgress)
// {
// event.setMotd(ChatColor.GREEN + "Recruiting" + extrainformation);
// }
//Recruiting
else if (_game == null || _game.GetState() == GameState.Recruit)
}
//Always Joinable
/*if (_game != null && _game.JoinInProgress)
{
event.setMotd(ChatColor.GREEN + "Recruiting" + extrainformation);
}
//Recruiting
else */if (_game == null || _game.GetState() == GameState.Recruit)
{
if (_game != null && _game.GetCountdown() != -1)
{