Final push before 2.2.12.

This commit is contained in:
WayofTime 2018-05-04 14:34:46 -04:00
parent 778838e2b0
commit 6a56a13aac
3 changed files with 8 additions and 1 deletions

View file

@ -4,6 +4,8 @@ Version 2.2.12
- Fixed Hellfire Forge and Alchemy Table's shape-crafted-ness.
- Fixed Cutting Fluids so they now work properly.
- Fixed the Fluid filters so that they now work perfectly in the routing system.
- Fixed the Living Armour Upgrade that provides night vision, so it is no longer as finicky.
- Proved that Way could update the version number properly without being told by the maid.
------------------------------------------------------
Version 2.2.11

View file

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

View file

@ -287,6 +287,11 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr
vec.normalize();
if (speed <= 0.00001)
{
return;
}
livingEntity.setVelocity(vec.x * speed, vec.y * speed, vec.z * speed);
}