games647 / ScoreboardStats

Bukkit plugin for customizing the sidebar of the scoreboard feature from minecraft
https://dev.bukkit.org/bukkit-mods/scoreboardstats/
MIT License
28 stars 45 forks source link

Add "rank" to variables and API #3

Closed punkeel closed 11 years ago

games647 commented 11 years ago

I actually don't like the format style. For example the variablelist looks now more complicated. Compare it:

//Your version public static final String SIGN_DEATH = "[Death]"; public static final String SIGN_KDR = "[KDR]";

//my. In my opinion it looks better when the = is direct under the other one. public static final String SIGN_KILL = "[Kill]"; public static final String SIGN_DEATH = "[Death]";

and the formatter used to many spaces per indent.

Lastly the rank method is a good Idea. ;)

punkeel commented 11 years ago

Reformating is made automagically by my IDE ... May I re-push without indentation ?