Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import net.minecraft.server.v1_16_R3.EntityArmorStand;
  2. import net.minecraft.server.v1_16_R3.World;
  3. import org.bukkit.Location;
  4.  
  5. public class MyArmorStand extends EntityArmorStand {
  6.  
  7.  
  8. public MyArmorStand(World world, Location location) {
  9. super(world, location.getX(), location.getY(), location.getZ());
  10.  
  11. world.addEntity(this);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement