diff --git a/src/pref.c b/src/pref.c index d00d828..1e42cb6 100644 --- a/src/pref.c +++ b/src/pref.c @@ -2699,7 +2699,8 @@ static GtkWidget *generic_game_frame (enum server_type type) { gtk_box_pack_start(GTK_BOX(page_vbox), notebook, TRUE, TRUE, 0); if ((games[type].flags & GAME_CONNECT) == 0) { - label = gtk_label_new(_("*** Not Implemented ***")); + char* message = type == LAN_SERVER? "": _("*** Not Implemented ***"); + label = gtk_label_new(message); gtk_misc_set_alignment(GTK_MISC(label), 0.5, 0.5); gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); gtk_widget_show(label);