diff options
author | Owen <[email protected]> | 2022-10-11 17:04:26 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-11 22:04:26 +0100 |
commit | 6b26cfcd310c7345330e46e89fc90b0e3368f0e0 (patch) | |
tree | 5acd45d487c4a7ab95ae18eac6b7920630a83b01 /build-data | |
parent | b097a241c0eed9235be1dae195cb7929fb701527 (diff) | |
download | Paper-6b26cfcd310c7345330e46e89fc90b0e3368f0e0.tar.gz Paper-6b26cfcd310c7345330e46e89fc90b0e3368f0e0.zip |
Add missing Entity + Projectile API (#7632)
Diffstat (limited to 'build-data')
-rw-r--r-- | build-data/paper.at | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build-data/paper.at b/build-data/paper.at index b5098bd7a7..c7312d8e58 100644 --- a/build-data/paper.at +++ b/build-data/paper.at @@ -223,9 +223,24 @@ public net.minecraft.world.entity.animal.Panda getEatCounter()I public net.minecraft.world.entity.animal.Panda setEatCounter(I)V public net.minecraft.world.entity.animal.Bee isRolling()Z public net.minecraft.world.entity.animal.Bee setRolling(Z)V +public net.minecraft.world.entity.animal.Bee numCropsGrownSincePollination +public net.minecraft.world.entity.animal.Bee ticksWithoutNectarSinceExitingHive public net.minecraft.world.entity.monster.piglin.Piglin isChargingCrossbow()Z public net.minecraft.world.entity.monster.Vex hasLimitedLife public net.minecraft.world.entity.monster.Vex limitedLifeTicks +public net.minecraft.world.entity.npc.WanderingTrader wanderTarget +public net.minecraft.world.entity.animal.MushroomCow effect +public net.minecraft.world.entity.animal.MushroomCow effectDuration +public net.minecraft.world.entity.ambient.Bat targetPosition +public net.minecraft.world.entity.monster.Ravager attackTick +public net.minecraft.world.entity.monster.Ravager stunnedTick +public net.minecraft.world.entity.monster.Ravager roarTick +public net.minecraft.world.entity.vehicle.MinecartTNT fuse +public net.minecraft.world.entity.monster.Endermite life +public net.minecraft.world.entity.vehicle.MinecartHopper cooldownTime +public net.minecraft.world.entity.projectile.AbstractArrow soundEvent +public net.minecraft.world.entity.monster.Phantom anchorPoint + # Cook speed multipler API public net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity recipeType @@ -332,6 +347,15 @@ public net.minecraft.world.entity.projectile.FireworkRocketEntity life # More Projectile API public net.minecraft.world.entity.projectile.FishingHook timeUntilLured +public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaX +public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaY +public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaZ +public net.minecraft.world.entity.projectile.ShulkerBullet currentMoveDirection +public net.minecraft.world.entity.projectile.ShulkerBullet flightSteps +public net.minecraft.world.entity.projectile.AbstractArrow soundEvent +public net.minecraft.world.entity.projectile.ThrownTrident dealtDamage +public net.minecraft.world.entity.projectile.Projectile hasBeenShot +public net.minecraft.world.entity.projectile.Projectile leftOwner # Teleport API public net.minecraft.server.network.ServerGamePacketListenerImpl internalTeleport(DDDFFLjava/util/Set;Z)V |