It's 3AM so time for random commit titles: Longboi Johnson

This commit is contained in:
ZeroEpoch1969 2018-07-26 03:09:33 -07:00
parent 7baf5f322e
commit 575818ba69
No known key found for this signature in database
GPG key ID: A7BAB4E14F089CF3
2 changed files with 2 additions and 21 deletions

View file

@ -143,22 +143,10 @@ public class Command_myadmin extends FreedomCommand
}
String msg = StringUtils.join(args, " ", 1, args.length);
if (!msg.contains("%name%"))
{
msg("You login message must contain your name. To add it, specify %name% where you want it.", ChatColor.RED);
return true;
}
FUtil.adminAction(sender.getName(), "Setting personal login message" + (init == null ? "" : " for " + targetPlayer.getName()), false);
target.setLoginMessage(msg);
msg((init == null ? "Your" : targetPlayer.getName() + "'s") + " login message is now: ");
if (msg.contains("%name%"))
{
msg("> " + FUtil.colorize(msg).replace("%name%", targetPlayer.getName()));
}
else
{
msg("> " + ChatColor.AQUA + targetPlayer.getName() + " is " + ChatUtils.colorize(target.getLoginMessage()));
}
msg("> " + ChatColor.AQUA + (msg.contains("%name%") ? "" : target.getName() + " is ") + FUtil.colorize(msg).replace("%name%", targetPlayer.getName()));
plugin.al.save();
plugin.al.updateTables();
return true;

View file

@ -209,14 +209,7 @@ public class RankManager extends FreedomService
loginMsg = ChatUtils.colorize(admin.getLoginMessage());
}
}
if (loginMsg.contains("%name%"))
{
FUtil.bcastMsg(loginMsg.replace("%name%", player.getName()));
}
else
{
FUtil.bcastMsg(ChatColor.AQUA + player.getName() + " is " + loginMsg);
}
FUtil.bcastMsg(ChatColor.AQUA + (loginMsg.contains("%name%") ? "" : player.getName() + " is ") + FUtil.colorize(loginMsg).replace("%name%", player.getName()));
plugin.pl.getPlayer(player).setTag(display.getColoredTag());
if (isAdmin)