Skip to content

Commit

Permalink
silly funny 666 joke
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Nov 16, 2023
1 parent 0040681 commit 98075f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,6 @@
//Carry over intents & targeted limb to the new Xeno
set_movement_intent(old_xeno.m_intent)
a_intent_change(old_xeno.a_intent)
if(src.client)
src.a_select_zone(old_xeno.zone_selected, src.client) // BIRD: fix this

//We are hiding, let's keep hiding if we can!
if(old_xeno.layer == XENO_HIDING_LAYER)
Expand Down Expand Up @@ -571,6 +569,7 @@
var/name_prefix = in_hive.prefix
var/name_client_prefix = ""
var/name_client_postfix = ""
var/number_decorator = ""
if(client)
name_client_prefix = "[(client.xeno_prefix||client.xeno_postfix) ? client.xeno_prefix : "XX"]-"
name_client_postfix = client.xeno_postfix ? ("-"+client.xeno_postfix) : ""
Expand All @@ -581,9 +580,11 @@

var/age_display = show_age_prefix ? age_prefix : ""
var/name_display = ""
if(nicknumber == 666)
number_decorator = "Infernal "
if(show_name_numbers)
name_display = show_only_numbers ? " ([nicknumber])" : " ([name_client_prefix][nicknumber][name_client_postfix])"
name = "[name_prefix][age_display][caste.display_name || caste.caste_type][name_display]"
name = "[name_prefix][number_decorator][age_display][caste.display_name || caste.caste_type][name_display]"

//Update linked data so they show up properly
change_real_name(src, name)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
icon_xenonid = 'icons/mob/xenonids/larva.dmi'

/mob/living/carbon/xenomorph/larva/Life()
if(bloody && (evolution_stored >= evolution_threshold / 2)) //We're still bloody
if(is_bloody && (evolution_stored >= evolution_threshold / 2)) //We're no longer bloody so update our name...
generate_name()
is_bloody = FALSE
return ..()
Expand Down

0 comments on commit 98075f3

Please sign in to comment.