mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 07:17:58 +01:00
Fixed non-pegasi not able to jump out of cloud blocks
This commit is contained in:
parent
f8018cb6fc
commit
4cd2809f40
1 changed files with 2 additions and 3 deletions
|
@ -105,10 +105,9 @@ public class CloudBlock extends Block implements CloudLike {
|
||||||
entity.addVelocity(0, 0.07, 0);
|
entity.addVelocity(0, 0.07, 0);
|
||||||
entity.setOnGround(true);
|
entity.setOnGround(true);
|
||||||
}
|
}
|
||||||
entity.setVelocity(entity.getVelocity().multiply(0.9F, 1, 0.9F));
|
|
||||||
} else {
|
|
||||||
entity.setVelocity(entity.getVelocity().multiply(0.9F));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
entity.setVelocity(entity.getVelocity().multiply(0.9F, 1, 0.9F));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue