Fixed NPE when getting flairs #54

Closed
alisolarflare wants to merge 1 commit from Bugfix into master
Showing only changes of commit 7b9aa332d8 - Show all commits

View file

@ -141,7 +141,7 @@ public class PluginMain extends JavaPlugin { // Translated to Java: 2015.07.15.
if (PlayersWithFlairs.contains(ign))
continue;
try (ChatPlayer mp = TBMCPlayer.getFromName(ign).asPluginPlayer(ChatPlayer.class)) { // Loads player file
if (mp == null)
if (mp == null || mp.getUserNames() == null || author == null)
continue;
/*
* if (!JoinedBefore(mp, 2015, 6, 5)) continue;