/* Mud long name.. 
 * Returns a readable version of the muds name.
 * pretty stupid and simple way to do it, shoulud at least check a .h file.
 * Baldrick, dec '96.
 */
string mud_long_name()
  {
  switch (mud_name())
    {
    case "fr" : return "Final Realms"; 
    case "fr_dev" : return "FR:Development";
    case "fr_tnd" : return "FR:The Next Dimension";
    case "fr_anarchy" : return "FR:Anarchy";
    default: return "Obviously not decided yet";
    }
}