From 1f3fdece9aaf7bed276248b37c8c93692c1134f2 Mon Sep 17 00:00:00 2001 From: Lexanx <61974560+Lexanx@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:07:54 +0300 Subject: [PATCH] ochki --- mods/adherent_discharge/code/adherent.dm | 3 +++ mods/diona/code/station.dm | 4 ++++ mods/ipc_mods/code/machine.dm | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/mods/adherent_discharge/code/adherent.dm b/mods/adherent_discharge/code/adherent.dm index cdeea81675e41..0cadeea6d174a 100644 --- a/mods/adherent_discharge/code/adherent.dm +++ b/mods/adherent_discharge/code/adherent.dm @@ -4,6 +4,9 @@ /obj/item/organ/internal/cell/adherent var/ready_to_charge +/datum/species/adherent/skills_from_age(age) + if(age) + . = 8 /mob/living/carbon/human/proc/toggle_emergency_discharge() set category = "Abilities" diff --git a/mods/diona/code/station.dm b/mods/diona/code/station.dm index ef4e1aac863f3..7d40874b9fb26 100644 --- a/mods/diona/code/station.dm +++ b/mods/diona/code/station.dm @@ -16,3 +16,7 @@ slowdown = 2 thirst_factor = 0.06 additional_languages = 2 + +/datum/species/diona/skills_from_age(age) + if(age) + . = 16 diff --git a/mods/ipc_mods/code/machine.dm b/mods/ipc_mods/code/machine.dm index 3de8fc23e7a86..1026456608a92 100644 --- a/mods/ipc_mods/code/machine.dm +++ b/mods/ipc_mods/code/machine.dm @@ -5,6 +5,10 @@ passive_temp_gain = 0 // This should cause IPCs to stabilize at ~80 C in a 20 C environment.(5 is default without organ) additional_languages = 1 +/datum/species/machine/skills_from_age(age) + if(age) + . = 8 + /obj/machinery/organ_printer/robot/New() LAZYINITLIST(products) products[BP_COOLING] = list(/obj/item/organ/internal/cooling_system, 35)