Login messages

Last commit from me. Don't have the power but to me Packs is the new Lead Developer
This commit is contained in:
Seth
2020-10-25 09:27:56 -07:00
parent 2ecfd9610f
commit 6e84fdad23
6 changed files with 27 additions and 14 deletions

View File

@ -271,7 +271,7 @@ public class RankManager extends FreedomService
{
if (display.hasDefaultLoginMessage())
{
message = "%name% is %det% %coloredrank%";
message = "%name% is %art% %coloredrank%";
}
}
}
@ -281,7 +281,7 @@ public class RankManager extends FreedomService
+ FUtil.colorize(message).replace("%name%", player.getName())
.replace("%rank%", display.getName())
.replace("%coloredrank%", display.getColoredName())
.replace("%det%", display.getDeterminer()));
.replace("%art%", display.getDeterminer()));
return loginMessage;
}