Skip to content

Commit

Permalink
ochki
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexanx committed Dec 16, 2024
1 parent 7cc0067 commit 1f3fdec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mods/adherent_discharge/code/adherent.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions mods/diona/code/station.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@
slowdown = 2
thirst_factor = 0.06
additional_languages = 2

/datum/species/diona/skills_from_age(age)
if(age)
. = 16
4 changes: 4 additions & 0 deletions mods/ipc_mods/code/machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1f3fdec

Please sign in to comment.