In fact it's not your bedroom, it's living room... At least game checks upgrade level of living room to show different images depending on it and time of the day. I may add it as config option later, not sure yet.meanwhile and totally unrelated another suggestion...
since the addition of the in-house avatars I notice all my male guards and janitors walking into the MC bedroom willy-nilly -- maybe limit these randoms to female only? maybe with a hetero conscious (/jk) easy fix like
functions.jscurrent line 5508:
let npcs = Object.values($emg.npc).filter(npc => npc.state > 0 && !npc.busy);
changed to:
let npcs = Object.values($emg.npc).filter(npc => npc.state > 0 && !npc.busy && npc.sex == 0);