diff --git a/src/main/java/ellpeck/actuallyadditions/booklet/GuiBookletStand.java b/src/main/java/ellpeck/actuallyadditions/booklet/GuiBookletStand.java index 7563a09c9..bc56285be 100644 --- a/src/main/java/ellpeck/actuallyadditions/booklet/GuiBookletStand.java +++ b/src/main/java/ellpeck/actuallyadditions/booklet/GuiBookletStand.java @@ -36,6 +36,11 @@ public class GuiBookletStand extends GuiBooklet{ public void initGui(){ super.initGui(); + //Remove Bookmark Buttons + for(GuiButton bookmarkButton : this.bookmarkButtons){ + bookmarkButton.visible = false; + } + this.buttonSetPage = new GuiButton(-100, this.guiLeft+this.xSize+10, this.guiTop+10, 100, 20, "Set Page"){ @Override public void drawButton(Minecraft mc, int x, int y){ diff --git a/src/main/resources/assets/actuallyadditions/lang/en_US.lang b/src/main/resources/assets/actuallyadditions/lang/en_US.lang index e7d2f3fd6..1caf65410 100644 --- a/src/main/resources/assets/actuallyadditions/lang/en_US.lang +++ b/src/main/resources/assets/actuallyadditions/lang/en_US.lang @@ -615,5 +615,5 @@ booklet.actuallyadditions.chapter.miscReconstructor.text.1=There are some additi booklet.actuallyadditions.chapter.miscReconstructor.text.3=The Ethetic Quartz Blocks are Quartz Blocks spruced up. They can be crafted into stairs, slabs and walls with the same recipes as cobblestone has. No, not misspelled booklet.actuallyadditions.chapter.bookStand.name=Manual Stand -booklet.actuallyadditions.chapter.bookStand.text.1=The Manual Stand is a block that is supposed to mainly be used on Servers. You can, provided you are the person who placed it down, set a page in the GUI that will open when someone else accesses it by pressing the "Set Page"-button while being on the desired page. The Manual Stand does not save bookmarks or pages another player navigated to, meaing re-accessing the Stand will cause it to always end up on the page speficied by the placer. +booklet.actuallyadditions.chapter.bookStand.text.1=The Manual Stand is a block that is supposed to mainly be used on Servers. You can, provided you are the person who placed it down, set a page in the GUI that will open when someone else accesses it by pressing the "Set Page"-button while being on the desired page. The Manual Stand does not save pages another player navigated to, meaing re-accessing the Stand will cause it to always end up on the page speficied by the placer. booklet.actuallyadditions.chapter.bookStand.text.2=Stand on it \ No newline at end of file