X-Git-Url: https://jfr.im/git/irc/gameservirc.git/blobdiff_plain/e1c41a8400df5f83887f8274c84b7e576d2e41d3..6f727d4c9eb5c886f14598577f40da583577444e:/gameserv/configscript.cpp diff --git a/gameserv/configscript.cpp b/gameserv/configscript.cpp index 51ee247..13fb4c1 100644 --- a/gameserv/configscript.cpp +++ b/gameserv/configscript.cpp @@ -29,16 +29,25 @@ int main() outfile << "#define UNREAL" << endl; outfile << "#undef BAHAMUT" << endl; outfile << "#undef P10" << endl; + outfile << "#undef HYBRID" << endl; break; case '2': outfile << "#undef UNREAL" << endl; outfile << "#define BAHAMUT" << endl; outfile << "#undef P10" << endl; + outfile << "#undef HYBRID" << endl; break; case '3': outfile << "#undef UNREAL" << endl; outfile << "#undef BAHAMUT" << endl; outfile << "#define P10" << endl; + outfile << "#undef HYBRID" << endl; + break; + case '4': + outfile << "#undef UNREAL" << endl; + outfile << "#undef BAHAMUT" << endl; + outfile << "#undef P10" << endl; + outfile << "#define HYBRID" << endl; break; default: break; @@ -78,7 +87,8 @@ char menu(int page) cout << "Choose your IRCD" << endl; cout << "1. Unreal3.x" << endl << "2. bahamut-1.4.x" << endl - << "3. ircu 2.10.x (P10)" << endl; + << "3. ircu 2.10.x (P10)" << endl + << "4. ircd-hybrid, ircd-ratbox, or csircd" << endl; cout << "Make your selection: "; }