mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Fixed non-pegasi not able to jump out of cloud blocks
This commit is contained in:
parent
1aa479e3ff
commit
3edb43b132
1 changed files with 2 additions and 3 deletions
|
@ -119,10 +119,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