Fix getting a stack of unstackable stuff from grid + text rendering order
This commit is contained in:
@@ -159,6 +159,8 @@ public abstract class GuiBase extends GuiContainer {
|
||||
}
|
||||
|
||||
public void drawItemOverlay(ItemStack stack, String text, int x, int y) {
|
||||
itemRender.renderItemOverlayIntoGUI(fontRendererObj, stack, x, y, "");
|
||||
|
||||
if (text != null) {
|
||||
GlStateManager.pushMatrix();
|
||||
GlStateManager.translate(x, y, 1);
|
||||
@@ -182,8 +184,6 @@ public abstract class GuiBase extends GuiContainer {
|
||||
GlStateManager.disableBlend();
|
||||
GlStateManager.popMatrix();
|
||||
}
|
||||
|
||||
itemRender.renderItemOverlayIntoGUI(fontRendererObj, stack, x, y, "");
|
||||
}
|
||||
|
||||
public void drawString(int x, int y, String message) {
|
||||
|
||||
@@ -73,7 +73,9 @@ public class MessageStoragePull extends MessageHandlerPlayerToServer<MessageStor
|
||||
}
|
||||
} else if (message.one) {
|
||||
quantity = 1;
|
||||
} else if (message.shift && quantity > item.getType().getItemStackLimit(item.toItemStack())) {
|
||||
}
|
||||
|
||||
if (quantity > item.getType().getItemStackLimit(item.toItemStack())) {
|
||||
quantity = item.getType().getItemStackLimit(item.toItemStack());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user