Location to = entity.getLocation();
Vehicle vehicle = entity.getEntity();
CommonUtil.callEvent(new VehicleUpdateEvent(vehicle));
if (!from.equals(to)) {
// Execute move events
CommonUtil.callEvent(new VehicleMoveEvent(vehicle, from, to));
for (org.bukkit.block.Block sign : this.getBlockTracker().getActiveSigns()) {
SignAction.executeAll(new SignActionEvent(sign, this), SignActionType.MEMBER_MOVE);
}
}