Final push before 2.2.12.
This commit is contained in:
parent
778838e2b0
commit
6a56a13aac
|
@ -4,6 +4,8 @@ Version 2.2.12
|
||||||
- Fixed Hellfire Forge and Alchemy Table's shape-crafted-ness.
|
- Fixed Hellfire Forge and Alchemy Table's shape-crafted-ness.
|
||||||
- Fixed Cutting Fluids so they now work properly.
|
- Fixed Cutting Fluids so they now work properly.
|
||||||
- Fixed the Fluid filters so that they now work perfectly in the routing system.
|
- 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
|
Version 2.2.11
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
mod_name=BloodMagic
|
mod_name=BloodMagic
|
||||||
package_group=com.wayoftime.bloodmagic
|
package_group=com.wayoftime.bloodmagic
|
||||||
mod_version=2.2.11
|
mod_version=2.2.12
|
||||||
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
|
||||||
|
|
|
@ -287,6 +287,11 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr
|
||||||
|
|
||||||
vec.normalize();
|
vec.normalize();
|
||||||
|
|
||||||
|
if (speed <= 0.00001)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
livingEntity.setVelocity(vec.x * speed, vec.y * speed, vec.z * speed);
|
livingEntity.setVelocity(vec.x * speed, vec.y * speed, vec.z * speed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue