Skip to content
Snippets Groups Projects
Commit 5ab0cf41 authored by deuce's avatar deuce
Browse files

Decrement listcount when a BBS is deleted.

Get rid of the stupid "Huh?" message when deleting (Why would I put that in there?!?!)
parent eeaa6bc8
No related branches found
No related tags found
No related merge requests found
......@@ -339,7 +339,6 @@ struct bbslist *show_bbslist(int mode)
}
break;
case MSK_DEL:
uifc.msg("Huh?");
if(!list[opt]->name[0]) {
uifc.helpbuf= "`Calming down`\n\n";
"~ Some handy tips on calming down ~\n"
......@@ -364,6 +363,7 @@ struct bbslist *show_bbslist(int mode)
list[i]->id=i;
}
write_list(list);
listcount--;
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment