From 8eceb3d8ae9f83b42d2b2acd9d7ccc079c9ab0f3 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Mon, 12 Jul 2021 08:47:30 +0200 Subject: [PATCH] Venus human traps and swarmers are now numbered. (#60151) "This is terrible for logs and ahelps as people can't report the number of the mob, which I'm pretty sure is part of why we number spiders, monkeys, and blobbernauts." - RaveRadbury. --- .../modules/mob/living/simple_animal/hostile/venus_human_trap.dm | 1 + code/modules/swarmers/swarmer.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm index 4a6bae76526..c93257a50ce 100644 --- a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm +++ b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm @@ -128,6 +128,7 @@ lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE faction = list("hostile","vines","plants") initial_language_holder = /datum/language_holder/venus + unique_name = TRUE /// A list of all the plant's vines var/list/vines = list() /// The maximum amount of vines a plant can have at one time diff --git a/code/modules/swarmers/swarmer.dm b/code/modules/swarmers/swarmer.dm index e10e4a58956..2c86a0e3330 100644 --- a/code/modules/swarmers/swarmer.dm +++ b/code/modules/swarmers/swarmer.dm @@ -64,6 +64,7 @@ light_color = LIGHT_COLOR_CYAN hud_type = /datum/hud/living/swarmer speech_span = SPAN_ROBOT + unique_name = TRUE ///Resource points, generated by consuming metal/glass var/resources = 20 ///Maximum amount of resources a swarmer can store