mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
made effect display move with the config
This commit is contained in:
parent
b50773021a
commit
3a44690bc3
1 changed files with 3 additions and 2 deletions
|
@ -364,9 +364,10 @@ public class ClientEvents {
|
||||||
float scale = 0.75F;
|
float scale = 0.75F;
|
||||||
GlStateManager.pushMatrix();
|
GlStateManager.pushMatrix();
|
||||||
GlStateManager.scale(scale, scale, scale);
|
GlStateManager.scale(scale, scale, scale);
|
||||||
int stackY = 15;
|
int stackX = conf % 2 == 0 ? 10 : res.getScaledWidth() - 22;
|
||||||
|
int stackY = conf < 2 ? 15 : res.getScaledHeight() - 55;
|
||||||
for (Tuple<ItemStack, Boolean> effect : SHOWING_EFFECTS.values()) {
|
for (Tuple<ItemStack, Boolean> effect : SHOWING_EFFECTS.values()) {
|
||||||
int theX = (int) (10 / scale);
|
int theX = (int) (stackX / scale);
|
||||||
int theY = (int) (stackY / scale);
|
int theY = (int) (stackY / scale);
|
||||||
ItemStack stack = effect.getFirst();
|
ItemStack stack = effect.getFirst();
|
||||||
Helper.renderItemInGui(stack, theX, theY, 1F);
|
Helper.renderItemInGui(stack, theX, theY, 1F);
|
||||||
|
|
Loading…
Reference in a new issue