Skip to content
This repository has been archived by the owner on May 13, 2023. It is now read-only.

Commit

Permalink
Changelog + version
Browse files Browse the repository at this point in the history
  • Loading branch information
TehNut committed Jul 22, 2018
1 parent 6c5bbed commit 093cfb1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod_name=BloodMagic
package_group=com.wayoftime.bloodmagic
mod_version=2.3.0
mod_version=2.3.1
mc_version=1.12.2
forge_version=14.23.2.2611
curse_id=224791
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/WayofTime/bloodmagic/block/BlockAltar.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public int getComparatorInputOverride(IBlockState state, World world, BlockPos p

TileEntity tile = world.getTileEntity(pos);

if (tile != null && tile instanceof TileAltar) {
if (tile instanceof TileAltar) {
TileAltar altar = (TileAltar) tile;
ItemStack orbStack = altar.getStackInSlot(0);

Expand Down

0 comments on commit 093cfb1

Please sign in to comment.