mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 03:26:44 +01:00
Fix #79
This commit is contained in:
parent
a2410939dd
commit
1db87ad409
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ public class PlayerPhysics extends EntityPhysics<PlayerEntity> implements Tickab
|
|||
|
||||
private void tickArtificialFlight(MutableVector velocity) {
|
||||
if (ticksInAir % 10 == 0 && !entity.world.isClient) {
|
||||
ItemStack stack = entity.getEquippedStack(EquipmentSlot.CHEST);
|
||||
ItemStack stack = AmuletItem.getForEntity(entity);
|
||||
|
||||
int damageInterval = 20;
|
||||
int minDamage = 1;
|
||||
|
|
Loading…
Reference in a new issue