Skip to content

Commit

Permalink
Remove special casing for me, no longer required.
Browse files Browse the repository at this point in the history
  • Loading branch information
iChun committed Dec 12, 2017
1 parent bbb4a38 commit 4f49463
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,6 @@ public static void populateHatsList(String s)
public static boolean isPlayersContributorHat(String hatName, String playerName)
{
return hatName.toLowerCase().startsWith("(c)") && hatName.toLowerCase().contains(playerName.toLowerCase())
|| hatName.equalsIgnoreCase("(C) iChun") && playerName.equalsIgnoreCase("ohaiiChun") //special casing for initial contrib hats.
|| hatName.equalsIgnoreCase("(C) Mr. Haz") && playerName.equalsIgnoreCase("damien95")
|| hatName.equalsIgnoreCase("(C) Fridgeboy") && playerName.equalsIgnoreCase("lacsap32");
}
Expand Down

0 comments on commit 4f49463

Please sign in to comment.