mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
BAD NULL
remov null via mobil
This commit is contained in:
parent
bb8a42bfed
commit
6ded1cc7b3
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ public class GuiMainPage extends GuiBooklet{
|
||||||
List<IBookletEntry> displayed = getDisplayedEntries();
|
List<IBookletEntry> displayed = getDisplayedEntries();
|
||||||
if(displayed.size() > i){
|
if(displayed.size() > i){
|
||||||
IBookletEntry entry = displayed.get(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{
|
else{
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue