General improvements #2
This commit is contained in:
@@ -52,7 +52,7 @@ public class GuiCrafter extends GuiBase {
|
||||
if (crafter.getStackInSlot(i) != null) {
|
||||
ItemStack pattern = crafter.getStackInSlot(i);
|
||||
|
||||
String text = t("misc.refinedstorage:processing");
|
||||
String text = t("gui.refinedstorage:crafter.processing");
|
||||
|
||||
if (!ItemPattern.isProcessing(pattern)) {
|
||||
ItemStack result = ItemPattern.getOutputs(pattern)[0];
|
||||
|
||||
@@ -4,8 +4,6 @@ import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.nbt.NBTTagList;
|
||||
import net.minecraft.util.text.TextFormatting;
|
||||
import net.minecraft.util.text.translation.I18n;
|
||||
import net.minecraftforge.common.util.Constants;
|
||||
|
||||
import java.util.List;
|
||||
@@ -25,10 +23,6 @@ public class ItemPattern extends ItemBase {
|
||||
for (ItemStack output : getOutputs(pattern)) {
|
||||
list.add(output.getDisplayName());
|
||||
}
|
||||
|
||||
if (isProcessing(pattern)) {
|
||||
list.add(TextFormatting.ITALIC + I18n.translateToLocal("misc.refinedstorage:processing") + TextFormatting.RESET);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user