mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 23:58:07 +01:00
[MIRROR] Fixes the mind.name of evolved aliens not being updated (for real this time) [MDB IGNORE] (#8864)
* Fixes an old one line PR that was supposed to fix something but actually didn't. (#62020) In #61595, I forgot that `mind.transfer_to()` sets the mind variable of the current mob to null. So i'm moving that `mind.name = new_xeno.real_name` statement above the proc call. * Fixes the mind.name of evolved aliens not being updated (for real this time) Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
@@ -127,8 +127,8 @@ Des: Removes all infected images from the alien.
|
||||
new_xeno.name = name
|
||||
new_xeno.real_name = real_name
|
||||
if(mind)
|
||||
mind.transfer_to(new_xeno)
|
||||
mind.name = new_xeno.real_name
|
||||
mind.transfer_to(new_xeno)
|
||||
qdel(src)
|
||||
|
||||
/mob/living/carbon/alien/can_hold_items(obj/item/I)
|
||||
|
||||
Reference in New Issue
Block a user