[MIRROR] Fix love not working right before Valentines day (VERY HIGHI priority) (#26490)

* Fix love not working right before Valentines day (VERY HIGHI priority) (#81440)

## About The Pull Request

The parent new call is what handles showing the alt appearance to the
mob

So we add the alt appearance to our date, try to show to any mob, it
fails (there is no seer), then set seer

Fixes this by fixing the order

## Changelog

🆑 Melbert
fix: You can once again see love on Valentines Day
/🆑

* Fix love not working right before Valentines day (VERY HIGHI priority)

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
SkyratBot
2024-02-12 19:05:31 -05:00
committed by GitHub
co-authored by MrMelbert
parent 0f3252d92e
commit 122d1612bf
5 changed files with 8 additions and 3 deletions
@@ -58,6 +58,7 @@
/datum/atom_hud/alternate_appearance/basic/one_person,
"bar_overlay_[REF(src)]",
cool_overlay,
null,
owner,
)
alt_appearance.show_to(owner)
@@ -76,6 +76,7 @@
/datum/atom_hud/alternate_appearance/basic/one_person,
"counter_overlay_[REF(src)]",
counter,
null,
owner,
)
alt_appearance.show_to(owner)
@@ -101,6 +102,7 @@
/datum/atom_hud/alternate_appearance/basic/one_person,
"counter_overlay_[REF(src)]_[i]",
number,
null,
owner,
)
number_alt_appearance.show_to(owner)
@@ -118,6 +118,7 @@
/datum/atom_hud/alternate_appearance/basic/one_person,
"object_overlay_[REF(src)]",
cool_overlay,
null,
owner,
)
alt_appearance.show_to(owner)