diff --git a/nsv13/code/datums/mood_events/nsv_events.dm b/nsv13/code/datums/mood_events/nsv_events.dm
index 422aba97664..5c95166391d 100644
--- a/nsv13/code/datums/mood_events/nsv_events.dm
+++ b/nsv13/code/datums/mood_events/nsv_events.dm
@@ -53,6 +53,6 @@
mood_change = 3
timeout = 30 SECONDS
-/datum/mood_event/lizard_vibrations
- description = "I know my muscles are shaking to warm me up, but it still feels distracting..\n"
+/datum/mood_event/lizard_shivers
+ description = "I'm shivering.. I need to find a spot where I can bask in the sun!\n" //Evolved mental response, even if not entirely true here.
mood_change = -2
diff --git a/nsv13/code/modules/mob/living/carbon/human/species_types/nsv_lizardpeople.dm b/nsv13/code/modules/mob/living/carbon/human/species_types/nsv_lizardpeople.dm
index 52a2c3f2837..b41f9a9edfa 100644
--- a/nsv13/code/modules/mob/living/carbon/human/species_types/nsv_lizardpeople.dm
+++ b/nsv13/code/modules/mob/living/carbon/human/species_types/nsv_lizardpeople.dm
@@ -26,12 +26,12 @@
if(cold_stacks < LIZARD_THERMOGENESIS_COLD_TRIGGER_STACKS && !fibrillating)
return ECTOTHERM_NO_THERMOGENESIS_NEEDED
if(!fibrillating) // !fibrillating reaching this point means enough stacks exist.
- to_chat(human_holder, "Various muscles across your body start quivering!")
- SEND_SIGNAL(human_holder, COMSIG_ADD_MOOD_EVENT, "lizard_trembles", /datum/mood_event/lizard_vibrations)
+ to_chat(human_holder, "You start shivering and feel the urge to find a sunny spot!")
+ SEND_SIGNAL(human_holder, COMSIG_ADD_MOOD_EVENT, "lizard_shivers", /datum/mood_event/lizard_shivers)
fibrillating = TRUE
else if(cold_stacks == 0) //We also check if we have to stop vibrating here.
- to_chat(human_holder, "Your muscles calm down.")
- SEND_SIGNAL(human_holder, COMSIG_CLEAR_MOOD_EVENT, "lizard_trembles")
+ to_chat(human_holder, "You stop shivering.")
+ SEND_SIGNAL(human_holder, COMSIG_CLEAR_MOOD_EVENT, "lizard_shivers")
fibrillating = FALSE
return ECTOTHERM_NO_THERMOGENESIS_NEEDED
@@ -39,5 +39,5 @@
//Modular proc attachment
/datum/species/lizard/on_species_loss(mob/living/carbon/human/C, datum/species/new_species, pref_load) //Human variable, named C. What did they mean by this?
- SEND_SIGNAL(C, COMSIG_CLEAR_MOOD_EVENT, "lizard_trembles") //Safely remove if our species is changed.
+ SEND_SIGNAL(C, COMSIG_CLEAR_MOOD_EVENT, "lizard_shivers") //Safely remove if our species is changed.
return ..()