From 19ff013d464a37eeacc23aad9fe35836f6d9164d Mon Sep 17 00:00:00 2001
From: Toastical <20125180+Toastical@users.noreply.github.com>
Date: Thu, 19 Jun 2025 19:58:18 +0300
Subject: [PATCH] lesser form will update flavor text appropriately (#29626)
---
code/modules/antagonists/changeling/powers/humanform.dm | 2 +-
code/modules/antagonists/changeling/powers/lesserform.dm | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/code/modules/antagonists/changeling/powers/humanform.dm b/code/modules/antagonists/changeling/powers/humanform.dm
index 8f5b349f117..09cc9cf97e2 100644
--- a/code/modules/antagonists/changeling/powers/humanform.dm
+++ b/code/modules/antagonists/changeling/powers/humanform.dm
@@ -22,7 +22,7 @@
user.dna = chosen_dna.Clone()
user.real_name = chosen_dna.real_name
domutcheck(user, MUTCHK_FORCED)
- user.flavor_text = ""
+ user.flavor_text = chosen_dna.flavor_text
user.dna.UpdateSE()
user.dna.UpdateUI()
user.sync_organ_dna(1)
diff --git a/code/modules/antagonists/changeling/powers/lesserform.dm b/code/modules/antagonists/changeling/powers/lesserform.dm
index 1509355bac8..ac9a8ac6d26 100644
--- a/code/modules/antagonists/changeling/powers/lesserform.dm
+++ b/code/modules/antagonists/changeling/powers/lesserform.dm
@@ -25,6 +25,7 @@
H.visible_message("[H] transforms!")
to_chat(H, "Our genes cry out!")
+ H.flavor_text = ""
H.monkeyize()
H.adjustBruteLoss(brute_damage)