Quick Fixes (#1362)

* Add modid to command localizations to prevent conflicts

* Corrected localizations of other lang files

* Fixed the items not being drawn on the right Y-level for the Sigil of Holding HUD
This commit is contained in:
Arcaratus 2018-07-22 10:07:27 -04:00 committed by Nick Ignoffo
parent e82510d553
commit 6c5bbed348
8 changed files with 226 additions and 226 deletions

View file

@ -44,7 +44,7 @@ public class ElementHolding extends HUDElement {
List<ItemStack> inventory = ItemSigilHolding.getInternalInventory(sigilHolding);
int xOffset = 0;
for (ItemStack stack : inventory) {
renderHotbarItem(drawX + 3 + xOffset, drawY - 4, partialTicks, minecraft.player, stack);
renderHotbarItem(drawX + 3 + xOffset, drawY + 3, partialTicks, minecraft.player, stack);
xOffset += 20;
}
}