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

Commit

Permalink
Update version + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
TehNut committed Feb 22, 2017
1 parent a7a6b1f commit 91aeb4b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
------------------------------------------------------
Version 2.1.4
------------------------------------------------------
- Fixed a crash when checking if two items could be combined
- Fixed a crash when attempting to open the Sigil of Holding GUI
- Fixed a crash when somebody made an "invalid" stack of the Blood Tank
- Fixed a crash/hilarity where a Blood Altar would update itself as a Comparator
- Thanks to Arcaratus for causing this. I haven't laughed that hard in a while.

------------------------------------------------------
Version 2.1.3
------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions 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.1.3
mod_version=2.1.4
mc_version=1.11
forge_version=13.19.1.2189
curse_id=224791
Expand All @@ -9,4 +9,4 @@ mappings_version=snapshot_20161212

jei_version=4.0.5.203
waila_version=1.8.5-B19
guideapi_version=2.1.0-47
guideapi_version=2.1.0-50
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void onPlayerClick(PlayerInteractEvent event)
}
}

if (event.getItemStack() != null && event.getItemStack().getItemUseAction() == EnumAction.DRINK)
if (event.getItemStack().getItemUseAction() == EnumAction.DRINK)
{
ItemStack drinkStack = event.getItemStack();

Expand Down

0 comments on commit 91aeb4b

Please sign in to comment.