diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java index f0b10839..c278dc9c 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java @@ -257,6 +257,10 @@ public class PlayerPhysics extends EntityPhysics implements Tickable, Moti entity.fallDistance = 0; if (type.isAvian()) { applyThrust(entity, velocity); + + if (entity.world.random.nextInt(9000) == 0) { + entity.dropItem(UItems.PEGASUS_FEATHER); + } } moveFlying(entity, velocity); if (entity.world.hasRain(entity.getBlockPos())) {