mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Put empty lines above a skill command to make it easier to distinguish from chat
This commit is contained in:
parent
6e5feced2f
commit
6c0da22d5e
@ -63,6 +63,12 @@ public abstract class SkillCommand implements TabExecutor {
|
||||
boolean hasEndurance = (PerksUtils.handleActivationPerks(player, 0, 0) != 0);
|
||||
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 < 20; i++)
|
||||
{
|
||||
player.sendMessage("");
|
||||
}
|
||||
|
||||
permissionsCheck(player);
|
||||
dataCalculations(player, skillValue, isLucky);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user