Update changelog + version

This commit is contained in:
Nicholas Ignoffo 2018-02-18 16:05:11 -08:00
parent 37c8012741
commit 7a288a7292
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,13 @@
------------------------------------------------------
Version 2.2.6
------------------------------------------------------
- Fixed a weird thing where slates were weird
- Added HUD elements for Tranquility and Inversion
- Fixed Sigils stacking 64 times higher than they should have
As a side note, I've been listening to http://loli.dance/ for the last like 2 hours now.
------------------------------------------------------
Version 2.2.5
------------------------------------------------------

View file

@ -1,6 +1,6 @@
mod_name=BloodMagic
package_group=com.wayoftime.bloodmagic
mod_version=2.2.5
mod_version=2.2.6
mc_version=1.12.2
forge_version=14.23.2.2611
curse_id=224791

View file

@ -3,7 +3,6 @@ package WayofTime.bloodmagic.client.hud;
import WayofTime.bloodmagic.client.Sprite;
import WayofTime.bloodmagic.item.sigil.ItemSigilDivination;
import WayofTime.bloodmagic.item.sigil.ItemSigilSeer;
import WayofTime.bloodmagic.tile.TileAltar;
import com.google.common.collect.Lists;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.ScaledResolution;
@ -86,7 +85,7 @@ public abstract class HUDElementCornerTile<T extends TileEntity> extends HUDElem
if (trace == null || trace.typeOfHit != RayTraceResult.Type.BLOCK)
return false;
TileEntity tile = Minecraft.getMinecraft().world.getTileEntity(Minecraft.getMinecraft().objectMouseOver.getBlockPos());
TileEntity tile = Minecraft.getMinecraft().world.getTileEntity(trace.getBlockPos());
if (tile == null || !tileClass.isAssignableFrom(tile.getClass()))
flag = false;