Less blank lines on skill commands

This commit is contained in:
nossr50 2019-01-26 07:27:15 -08:00
parent 1c58bd392d
commit ad990dbb28

View File

@ -66,7 +66,7 @@ public abstract class SkillCommand implements TabExecutor {
float skillValue = mcMMOPlayer.getSkillLevel(skill);
//Send the players a few blank lines to make finding the top of the skill command easier
for(int i = 0; i < 19; i++)
for(int i = 0; i < 2; i++)
{
player.sendMessage("");
}