diff --git a/code/modules/atmos_automation/console.dm b/code/modules/atmos_automation/console.dm index a1645fc02848..d2a0cc93a190 100644 --- a/code/modules/atmos_automation/console.dm +++ b/code/modules/atmos_automation/console.dm @@ -292,9 +292,10 @@ onclose(usr, "AAC_assemblies") /obj/machinery/computer/general_air_control/atmos_automation/proc/AAC_age_check(var/mob/M,var/list/href_list) - if(href_list["on"] || href_list["runonce"]) - if(M.client && !M.client.holder && M.client.player_age < 30) - message_admins("[key_name(M)] attempted to [href_list["on"] ? "toggle" : "single-run"] an AAC script despite their player age of [M.client.player_age].") + if(href_list["read"]) + if(M.client && !M.client.holder && M.client.player_age < 7) + to_chat(M, "Importing functionality is unavailable for new personnel. Please wait an additional [7 - M.client.player_age] days before use.") + message_admins("[key_name(M)] attempted to import an AAC script despite their player age of [M.client.player_age].") return TRUE /obj/machinery/computer/general_air_control/atmos_automation/proc/MakeCompare(var/datum/automation/a, var/datum/automation/b, var/comparetype)