Skip to content

Commit

Permalink
Small amount of grav handler fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
voidsong-dragonfly committed Mar 29, 2021
1 parent 54c5583 commit 8dd39ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class GravityHandler implements IGravityManager {

public static void applyGravity(Entity entity) {
if(entity.hasNoGravity()) return;
if(!entity.isInWater() || entity instanceof EntityItem) {
if(!entity.isInWater() && !entity.isInLava()) {
//Because working gravity on elytra-flying players can cause..... severe problems at lower gravity, it is my utter delight to announce to you elytra are now magic!
//This totally isn't because Mojang decided for some godforsaken @#@#@#% reason to make ALL WAYS TO SET ELYTRA FLIGHT _protected_
//With no set methods
Expand Down

0 comments on commit 8dd39ec

Please sign in to comment.