If a server has both a linked server and the panic bunker on, you can now choose to redirect new players to the linked server instead of denying them outright.

You shouldn't use this if BOTH servers are panic bunkered, obviously.
This commit is contained in:
Incoming
2016-12-04 21:27:17 -05:00
parent f38469b997
commit e0324a6fc8
4 changed files with 12 additions and 0 deletions
+4
View File
@@ -196,6 +196,10 @@ var/next_external_rsc = 0
log_access("Failed Login: [key] - New account attempting to connect during panic bunker")
message_admins("<span class='adminnotice'>Failed Login: [key] - New account attempting to connect during panic bunker</span>")
src << "Sorry but the server is currently not accepting connections from never before seen players."
if(global.cross_allowed && global.allow_panic_bunker_to_cross)
src << "<span class='notice'>Sending you to [global.cross_address].</span>"
winset(src, null, "command=.options")
src << link(global.cross_address)
qdel(src)
return 0