Skip to content

Instantly share code, notes, and snippets.

@windopper
Created March 16, 2022 14:33
Show Gist options
  • Save windopper/5cbd6d108c7d1dc4c7d019936ca2c09f to your computer and use it in GitHub Desktop.
Save windopper/5cbd6d108c7d1dc4c7d019936ca2c09f to your computer and use it in GitHub Desktop.
package net.minecraft.world.entity;
public enum EnumMoveType {
a, // Piston: A player being pushed by a piston
b, // Player: Pushed by another player by collision
c, // Self: Moving using keyboard controls, (i.e. WASD + Spacebar)
d, // Shulker: Being pushed by the shulkers extending body when it peeks
e; // Shulker_Box: Similarly to Shulker, being pushed by the extended block part.
private EnumMoveType() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment