private int fuelCheckCounter = 0;
@Override
public void onAttached() {
super.onAttached();
this.soundLoop = new PoweredCartSoundLoop(this);
double pushX = entity.getPushX();
double pushZ = entity.getPushZ();
if (MathUtil.lengthSquared(pushX, pushZ) < 0.001) {
this.pushDirection = BlockFace.SELF;
} else {