Fix fluid config showing when it shouldn't

This commit is contained in:
modmuss50 2018-09-13 20:01:35 +01:00
parent 01a3663b11
commit 5307fd4528

View file

@ -183,7 +183,7 @@ public class GuiBase extends GuiContainer {
GlStateManager.disableLighting(); GlStateManager.disableLighting();
GlStateManager.color(1, 1, 1, 1); GlStateManager.color(1, 1, 1, 1);
} }
if (builder.isInRect(guiLeft - 19, guiTop + 92 - offset + 27, 12, 12, mouseX, mouseY) && getMachine().hasSlotConfig()) { if (builder.isInRect(guiLeft - 19, guiTop + 92 - offset + 27, 12, 12, mouseX, mouseY) && getMachine().showTankConfig()) {
List<String> list = new ArrayList<>(); List<String> list = new ArrayList<>();
list.add("Configure Fluids"); list.add("Configure Fluids");
GuiUtils.drawHoveringText(list, mouseX - guiLeft , mouseY - guiTop , width, height, -1, mc.fontRenderer); GuiUtils.drawHoveringText(list, mouseX - guiLeft , mouseY - guiTop , width, height, -1, mc.fontRenderer);
@ -274,7 +274,7 @@ public class GuiBase extends GuiContainer {
GuiSlotConfiguration.reset(); GuiSlotConfiguration.reset();
} }
} }
if(isPointInRegion(-26, 84 - offset + 27, 30, 30, mouseX, mouseY) && getMachine().hasSlotConfig()){ if(isPointInRegion(-26, 84 - offset + 27, 30, 30, mouseX, mouseY) && getMachine().showTankConfig()){
if(slotConfigType != SlotConfigType.FLUIDS){ if(slotConfigType != SlotConfigType.FLUIDS){
slotConfigType = SlotConfigType.FLUIDS; slotConfigType = SlotConfigType.FLUIDS;
} else { } else {