remov null via mobil
This commit is contained in:
Brennan Ward 2017-11-03 13:37:21 -04:00 committed by GitHub
parent bb8a42bfed
commit 6ded1cc7b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -223,7 +223,7 @@ public class GuiMainPage extends GuiBooklet{
List<IBookletEntry> displayed = getDisplayedEntries();
if(displayed.size() > i){
IBookletEntry entry = displayed.get(i);
this.buttonList.add(new EntryButton(this, i, this.guiLeft+156, this.guiTop+11+i*13, 115, 10, "- "+entry.getLocalizedNameWithFormatting(), null));
this.buttonList.add(new EntryButton(this, i, this.guiLeft+156, this.guiTop+11+i*13, 115, 10, "- "+entry.getLocalizedNameWithFormatting(), ItemStack.EMPTY));
}
else{
return;