Skip to content

Commit

Permalink
Maybe possibly fixes icecat languages sometimes breaking, also adds a…
Browse files Browse the repository at this point in the history
… round end report bit for them (#24013)

maybe that's why the language doesn't work
  • Loading branch information
Paxilmaniac authored and Iajret committed Sep 29, 2023
1 parent 2a385ca commit ffe446c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions modular_skyrat/modules/primitive_catgirls/code/spawner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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...</span><br>")
if(length(members))
report += "The [member_name]s were:"
report += printplayerlist(members)
else
report += "<b>But none of its members woke up!</b>"

return "<div class='panel redborder'>[report.Join("<br>")]</div>"

// 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
Expand Down
1 change: 1 addition & 0 deletions modular_skyrat/modules/primitive_catgirls/code/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ffe446c

Please sign in to comment.