소스 검색

Less blank lines on skill commands

nossr50 7 년 전
부모
커밋
ad990dbb28
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/gmail/nossr50/commands/skills/SkillCommand.java

+ 1 - 1
src/main/java/com/gmail/nossr50/commands/skills/SkillCommand.java

@@ -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("");
                 }