Small fixes
This commit is contained in:
parent
691f2f108d
commit
88afa6a2c9
3 changed files with 10 additions and 10 deletions
|
@ -9,22 +9,22 @@ import ru.betterend.registry.EndBlocks;
|
||||||
import ru.betterend.registry.EndItems;
|
import ru.betterend.registry.EndItems;
|
||||||
|
|
||||||
public class CreativeTabs {
|
public class CreativeTabs {
|
||||||
public static final ItemGroup TAB_ITEMS;
|
|
||||||
public static final ItemGroup TAB_BLOCKS;
|
public static final ItemGroup TAB_BLOCKS;
|
||||||
|
public static final ItemGroup TAB_ITEMS;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
TAB_ITEMS = FabricItemGroupBuilder.create(BetterEnd.makeID("end_items"))
|
|
||||||
.icon(() -> new ItemStack(EndItems.ETERNAL_CRYSTAL)).appendItems(stacks -> {
|
|
||||||
for (Item i : EndItems.getModItems()) {
|
|
||||||
stacks.add(new ItemStack(i));
|
|
||||||
}
|
|
||||||
}).build();
|
|
||||||
TAB_BLOCKS = FabricItemGroupBuilder.create(BetterEnd.makeID("end_blocks"))
|
TAB_BLOCKS = FabricItemGroupBuilder.create(BetterEnd.makeID("end_blocks"))
|
||||||
.icon(() -> new ItemStack(EndBlocks.END_MYCELIUM)).appendItems(stacks -> {
|
.icon(() -> new ItemStack(EndBlocks.END_MYCELIUM)).appendItems(stacks -> {
|
||||||
for (Item i : EndItems.getModBlocks()) {
|
for (Item i : EndItems.getModBlocks()) {
|
||||||
stacks.add(new ItemStack(i));
|
stacks.add(new ItemStack(i));
|
||||||
}
|
}
|
||||||
}).build();
|
}).build();
|
||||||
|
TAB_ITEMS = FabricItemGroupBuilder.create(BetterEnd.makeID("end_items"))
|
||||||
|
.icon(() -> new ItemStack(EndItems.ETERNAL_CRYSTAL)).appendItems(stacks -> {
|
||||||
|
for (Item i : EndItems.getModItems()) {
|
||||||
|
stacks.add(new ItemStack(i));
|
||||||
|
}
|
||||||
|
}).build();
|
||||||
if (BetterEnd.isDevEnvironment()) {
|
if (BetterEnd.isDevEnvironment()) {
|
||||||
System.out.println("CREATIVE_TAB_ITEMS: " + TAB_ITEMS.getName());
|
System.out.println("CREATIVE_TAB_ITEMS: " + TAB_ITEMS.getName());
|
||||||
System.out.println("CREATIVE_TAB_BLOCKS: " + TAB_BLOCKS.getName());
|
System.out.println("CREATIVE_TAB_BLOCKS: " + TAB_BLOCKS.getName());
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"itemGroup.betterend.end_items": "Better End: Items",
|
"itemGroup.betterend.end_items": "Better End: Items",
|
||||||
"itemGroup.betterend.end_blocks": "Better End: Blocks",
|
"itemGroup.betterend.end_blocks": "Better End: Blocks",
|
||||||
|
|
||||||
"item.betterend.guidebook": "The End For Dummies",
|
"item.betterend.guidebook": "The End for Dummies",
|
||||||
"book.betterend.landing_text": "A short guide about surviving in the extreme conditions of The End.",
|
"book.betterend.landing_text": "A short guide about surviving in the extreme conditions of The End.",
|
||||||
"book.betterend.subtitle": "Surviving in The End",
|
"book.betterend.subtitle": "Survive in The End",
|
||||||
|
|
||||||
"category.rei.damage.amount&dmg": "Tool damage: %s",
|
"category.rei.damage.amount&dmg": "Tool damage: %s",
|
||||||
"category.rei.infusion.time&val": "Time: %s",
|
"category.rei.infusion.time&val": "Time: %s",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"itemGroup.betterend.end_blocks": "Better End: Блоки",
|
"itemGroup.betterend.end_blocks": "Better End: Блоки",
|
||||||
|
|
||||||
"item.betterend.guidebook": "Край для чайников",
|
"item.betterend.guidebook": "Край для чайников",
|
||||||
"book.betterend.landing_text": "Короткое руководство по выживанию в экстримальных условиях Края.",
|
"book.betterend.landing_text": "Краткое руководство по выживанию в экстремальных условиях Края.",
|
||||||
"book.betterend.subtitle": "Выживание в Краю",
|
"book.betterend.subtitle": "Выживание в Краю",
|
||||||
|
|
||||||
"category.rei.damage.amount&dmg": "Износ инструмента: %s",
|
"category.rei.damage.amount&dmg": "Износ инструмента: %s",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue