## About The Pull Request
- Fixes#92214
- Fixes#92407
Whenever a mob with a client attached to it steps into a closet we
create 2 images(background & contents image) to display to that viewer
4ee0793ecd/code/game/objects/structures/crates_lockers/closet_see_inside.dm (L87)
We are meant to reuse these images for multiple clients however this
proc does not check if we already made an image before. It just creates
a new one for every client(and we don't keep track of those previously
creates images) so we loose track of all sanity.
But now we make sure we make this image just once to reuse across
multiple clients
## Changelog
🆑
fix: You can no longer see parallel universes when 2 or more people gets
shoved into closets.
code: cleaned up closet see through code. It's documented & slightly
faster performance wise
/🆑