Update version + changelog
This commit is contained in:
parent
a7a6b1fddc
commit
91aeb4bf48
|
@ -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
|
||||
------------------------------------------------------
|
||||
|
|
|
@ -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
|
||||
|
@ -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
|
|
@ -159,7 +159,7 @@ public class LivingArmourHandler
|
|||
}
|
||||
}
|
||||
|
||||
if (event.getItemStack() != null && event.getItemStack().getItemUseAction() == EnumAction.DRINK)
|
||||
if (event.getItemStack().getItemUseAction() == EnumAction.DRINK)
|
||||
{
|
||||
ItemStack drinkStack = event.getItemStack();
|
||||
|
||||
|
|
Loading…
Reference in a new issue