4
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
4
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -32,9 +32,13 @@ body:
|
||||
id: minecraft
|
||||
attributes:
|
||||
label: What Minecraft version is this happening on?
|
||||
description: |
|
||||
If your Minecraft version isn't listed here, it means that it's no longer supported. In that case, don't create an issue.
|
||||
options:
|
||||
- Minecraft 1.18.1
|
||||
- Minecraft 1.16.5
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: forge
|
||||
attributes:
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/config.yml
vendored
2
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -1,4 +1,4 @@
|
||||
blank_issues_enabled: true
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Discord Community Support
|
||||
url: https://discordapp.com/invite/VYzsydb
|
||||
|
||||
@@ -9,6 +9,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed crash when opening alternatives screen
|
||||
|
||||
## [v1.10.0] - 2022-01-25
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed multiple bugs related to transferring recipes into the Crafting Grid.
|
||||
- Processing patterns now use the order of items/fluids specified in the pattern
|
||||
by [@necauqua](https://github.com/necauqua) and [@Darkere](https://github.com/Darkere).
|
||||
|
||||
@@ -33,7 +33,7 @@ apply plugin: 'maven-publish'
|
||||
|
||||
group = 'com.refinedmods'
|
||||
archivesBaseName = 'refinedstorage'
|
||||
version = '1.10.0'
|
||||
version = '1.10.1'
|
||||
|
||||
if (System.getenv('GITHUB_SHA') != null) {
|
||||
version += '+' + System.getenv('GITHUB_SHA').substring(0, 7)
|
||||
|
||||
@@ -3,14 +3,14 @@ package com.refinedmods.refinedstorage.screen.grid;
|
||||
import com.mojang.blaze3d.systems.RenderSystem;
|
||||
import com.mojang.blaze3d.vertex.PoseStack;
|
||||
import com.refinedmods.refinedstorage.RS;
|
||||
import com.refinedmods.refinedstorage.blockentity.config.IType;
|
||||
import com.refinedmods.refinedstorage.blockentity.data.BlockEntitySynchronizationManager;
|
||||
import com.refinedmods.refinedstorage.blockentity.grid.GridBlockEntity;
|
||||
import com.refinedmods.refinedstorage.container.AlternativesContainerMenu;
|
||||
import com.refinedmods.refinedstorage.render.FluidRenderer;
|
||||
import com.refinedmods.refinedstorage.screen.BaseScreen;
|
||||
import com.refinedmods.refinedstorage.screen.widget.CheckboxWidget;
|
||||
import com.refinedmods.refinedstorage.screen.widget.ScrollbarWidget;
|
||||
import com.refinedmods.refinedstorage.blockentity.config.IType;
|
||||
import com.refinedmods.refinedstorage.blockentity.data.BlockEntitySynchronizationManager;
|
||||
import com.refinedmods.refinedstorage.blockentity.grid.GridBlockEntity;
|
||||
import com.refinedmods.refinedstorage.util.RenderUtils;
|
||||
import net.minecraft.client.gui.components.Button;
|
||||
import net.minecraft.client.gui.screens.Screen;
|
||||
@@ -47,7 +47,7 @@ public class AlternativesScreen extends BaseScreen<AlternativesContainerMenu> {
|
||||
private FluidStack fluid;
|
||||
|
||||
private AlternativesScreen(Screen parent, Player player, Component title) {
|
||||
super(new AlternativesContainerMenu(player), 175, 143, null, title);
|
||||
super(new AlternativesContainerMenu(player), 175, 143, player.getInventory(), title);
|
||||
|
||||
this.parent = parent;
|
||||
this.scrollbar = new ScrollbarWidget(this, 155, 20, 12, 89);
|
||||
|
||||
Reference in New Issue
Block a user