Created
March 16, 2022 14:33
-
-
Save windopper/5cbd6d108c7d1dc4c7d019936ca2c09f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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