Changelog + version

This commit is contained in:
Nicholas Ignoffo 2018-07-22 07:10:00 -07:00
parent 6c5bbed348
commit 093cfb13ef
3 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,13 @@
------------------------------------------------------
Version 2.3.1
------------------------------------------------------
- Fixed Ritual of Magnetism not being registered
- Fixed Mob Sacrifice Array so it no longer kills bosses and players
- Fixed Will type serializer using lowercase names
- Fixed item rendering for the Sigil of Holding HUD
- Added mod id to command localization keys to prevent potential conflicts
------------------------------------------------------ ------------------------------------------------------
Version 2.3.0 Version 2.3.0
------------------------------------------------------ ------------------------------------------------------

View file

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

View file

@ -57,7 +57,7 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl
TileEntity tile = world.getTileEntity(pos); TileEntity tile = world.getTileEntity(pos);
if (tile != null && tile instanceof TileAltar) { if (tile instanceof TileAltar) {
TileAltar altar = (TileAltar) tile; TileAltar altar = (TileAltar) tile;
ItemStack orbStack = altar.getStackInSlot(0); ItemStack orbStack = altar.getStackInSlot(0);