From ffe446c715111b7823f6f2481f7060254880fc17 Mon Sep 17 00:00:00 2001 From: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com> Date: Fri, 29 Sep 2023 18:07:35 -0400 Subject: [PATCH] Maybe possibly fixes icecat languages sometimes breaking, also adds a round end report bit for them (#24013) maybe that's why the language doesn't work --- .../modules/primitive_catgirls/code/spawner.dm | 15 +++++++++++++++ .../modules/primitive_catgirls/code/species.dm | 1 + 2 files changed, 16 insertions(+) diff --git a/modular_skyrat/modules/primitive_catgirls/code/spawner.dm b/modular_skyrat/modules/primitive_catgirls/code/spawner.dm index 8cb3f3234fe..5cbe1d682c0 100644 --- a/modular_skyrat/modules/primitive_catgirls/code/spawner.dm +++ b/modular_skyrat/modules/primitive_catgirls/code/spawner.dm @@ -66,8 +66,23 @@ /datum/team/primitive_catgirls name = "Icewalkers" + member_name = "Icewalker" show_roundend_report = FALSE +/datum/team/primitive_catgirls/roundend_report() + var/list/report = list() + + report += span_header("An Ice Walker Tribe inhabited the wastes...
") + if(length(members)) + report += "The [member_name]s were:" + report += printplayerlist(members) + else + report += "But none of its members woke up!" + + return "
[report.Join("
")]
" + +// Antagonist datum + /datum/antagonist/primitive_catgirl name = "\improper Icewalker" job_rank = ROLE_LAVALAND // If you're ashwalker banned you should also not be playing this, other way around as well diff --git a/modular_skyrat/modules/primitive_catgirls/code/species.dm b/modular_skyrat/modules/primitive_catgirls/code/species.dm index 7bcaec865dd..586c7b22900 100644 --- a/modular_skyrat/modules/primitive_catgirls/code/species.dm +++ b/modular_skyrat/modules/primitive_catgirls/code/species.dm @@ -21,6 +21,7 @@ mutanttongue = /obj/item/organ/internal/tongue/cat/primitive species_language_holder = /datum/language_holder/primitive_felinid + language_prefs_whitelist = list(/datum/language/primitive_catgirl) bodytemp_normal = 270 // If a normal human gets hugged by one its gonna feel cold bodytemp_heat_damage_limit = 283 // To them normal station atmos would be sweltering