|
|
|
@@ -83,6 +83,8 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
|
|
|
|
|
log_href("[src] (usr:[usr]\[[COORD(usr)]\]) : [hsrc ? "[hsrc] " : ""][href]")
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
last_activity = world.time
|
|
|
|
|
|
|
|
|
|
//Logs all hrefs
|
|
|
|
|
log_href("[src] (usr:[usr]\[[COORD(usr)]\]) : [hsrc ? "[hsrc] " : ""][href]")
|
|
|
|
|
|
|
|
|
@@ -222,6 +224,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
|
|
|
|
|
///////////
|
|
|
|
|
|
|
|
|
|
/client/New(TopicData)
|
|
|
|
|
last_activity = world.time
|
|
|
|
|
world.SetConfig("APP/admin", ckey, "role=admin")
|
|
|
|
|
var/tdata = TopicData //save this for later use
|
|
|
|
|
TopicData = null //Prevent calls to client.Topic from connect
|
|
|
|
@@ -578,9 +581,10 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
|
|
|
|
|
//If we aren't an admin, and the flag is set
|
|
|
|
|
if(CONFIG_GET(flag/panic_bunker) && !holder && !GLOB.deadmins[ckey] && !(ckey in GLOB.bunker_passthrough))
|
|
|
|
|
var/living_recs = CONFIG_GET(number/panic_bunker_living)
|
|
|
|
|
var/vpn_living_recs = CONFIG_GET(number/panic_bunker_living_vpn)
|
|
|
|
|
//Relies on pref existing, but this proc is only called after that occurs, so we're fine.
|
|
|
|
|
var/minutes = get_exp_living(pure_numeric = TRUE)
|
|
|
|
|
if(minutes <= living_recs) // && !CONFIG_GET(flag/panic_bunker_interview)
|
|
|
|
|
if((minutes <= living_recs) || (IsVPN() && (minutes < vpn_living_recs)))
|
|
|
|
|
var/reject_message = "Failed Login: [key] - Account attempting to connect during panic bunker, but they do not have the required living time [minutes]/[living_recs]"
|
|
|
|
|
log_access(reject_message)
|
|
|
|
|
message_admins("<span class='adminnotice'>[reject_message]</span>")
|
|
|
|
@@ -850,6 +854,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
|
|
|
|
|
/client/Click(atom/object, atom/location, control, params, ignore_spam = FALSE, extra_info)
|
|
|
|
|
if(last_click > world.time - world.tick_lag)
|
|
|
|
|
return
|
|
|
|
|
last_activity = world.time
|
|
|
|
|
last_click = world.time
|
|
|
|
|
var/ab = FALSE
|
|
|
|
|
var/list/L = params2list(params)
|
|
|
|
@@ -922,6 +927,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
|
|
|
|
|
//checks if a client is afk
|
|
|
|
|
//3000 frames = 5 minutes
|
|
|
|
|
/client/proc/is_afk(duration = CONFIG_GET(number/inactivity_period))
|
|
|
|
|
var/inactivity = world.time - last_activity
|
|
|
|
|
if(inactivity > duration)
|
|
|
|
|
return inactivity
|
|
|
|
|
return FALSE
|
|
|
|
|