if (binding == LOCOMOTIVE_INCREASE_SPEED) {
for (EntityMinecart cart : train) {
if (cart instanceof EntityLocomotive) {
EntityLocomotive loco = (EntityLocomotive) cart;
if (loco.canControl(entiyPlayer.getGameProfile()))
loco.increaseSpeed();
}
}
} else if (binding == LOCOMOTIVE_DECREASE_SPEED) {
for (EntityMinecart cart : train) {
if (cart instanceof EntityLocomotive) {