Bluespace Light Replacer icon fix (#71148)

## About The Pull Request
update_icon broke the iconstate since it was hardcoded to use the
originals icons, this wasnt caught in development because update_icon
was originally overwritten
## Why It's Good For The Game
consistency
## Changelog
🆑
fix: bluespace light replacer displays icon correctly
/🆑

Co-authored-by: etherware-novice <candy@notarealaddr.com>
Co-authored-by: Candycaneannihalator <candycane@thisisnotarealaddr.com>
This commit is contained in:
texan-down-under
2022-11-17 09:18:19 -08:00
committed by GitHub
co-authored by etherware-novice Candycaneannihalator
parent 97ca0bdaab
commit b3e2a42aba
@@ -147,7 +147,7 @@
to_chat(user, status_string())
/obj/item/lightreplacer/update_icon_state()
icon_state = "lightreplacer[(obj_flags & EMAGGED ? 1 : 0)]"
icon_state = "[initial(icon_state)][(obj_flags & EMAGGED ? 1 : 0)]"
return ..()
/obj/item/lightreplacer/proc/status_string()