Fixed NPE with actionbar

This commit is contained in:
ASangarin 2020-09-12 21:09:40 +02:00
parent ec418d3afa
commit 6807a5f8f3

View File

@ -329,6 +329,6 @@ public class PlayerClass extends PostLoadObject {
}
public boolean hasActionBar() {
return actionBarFormat == null;
return actionBarFormat != null;
}
}