diff --git a/changelog.txt b/changelog.txt index f449eb05..9a176a06 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/gradle.properties b/gradle.properties index 3c89390d..eacbf839 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java index 3eac2ed9..a4878215 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java +++ b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java @@ -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); }