Skip to content

Commit

Permalink
Bug fix with case sensitivity and player names
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne0nx3r0 committed May 20, 2012
1 parent fa3c011 commit 4245aa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion com/gmail/Ne0nx3r0/BetterAliasPlayerListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent e) {
}catch(Exception ex){return; }

if(iParam > -1 && cmd.length >= iParam){
String sPlayerName = cmd[iParam];
String sPlayerName = cmd[iParam].toLowerCase();

text = "notFound";

Expand Down
2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BetterAlias
main: com.gmail.Ne0nx3r0.BetterAlias
version: '0.2'
version: '0.2.1'
database: false
description: Command alias system

0 comments on commit 4245aa1

Please sign in to comment.