public void cancelLaunch() {
   this.setLaunchPhase(EnumLaunchPhase.UNIGNITED);
   this.timeUntilLaunch = 0;
   if (!this.worldObj.isRemote && this.riddenByEntity instanceof EntityPlayerMP) {
     ((EntityPlayerMP) this.riddenByEntity)
         .addChatMessage(
             new ChatComponentText(GCCoreUtil.translate("gui.rocket.warning.nogyroscope")));
   }
 }
 public String getTitle() {
   return GCCoreUtil.translate("gui.message." + this.title + ".name");
 }
 @Override
 public String getName() {
   return GCCoreUtil.translate("container.spaceship.name");
 }