From c861680309e2448a279aa290b6c50bd263cbfc0c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 20 Sep 2020 01:37:19 +0200 Subject: [PATCH] [MIRROR] Fix runtime when pAIs access their menu then makes the runtime look their default look. (#885) * Fix runtime when pAIs access their menu then makes the runtime look their default look. (#53714) Runtime was fixed by implementing the new, proper asset cache system. Up until the point where I realised this was the intended look for the pAI's internal interface... I get the Geocities look, but I'm not going to inflict this back on pAIs. Even if it intentionally looks awful, I don't feel that it adds anything to the pAI experience. They're meant to be more advanced in some respects than NanoTrasen AI. As such, I've removed this background asset entirely, removed the associated code and turned the runtime's behaviour into the default outcome - No Geocities background. Just plain white. * Fix runtime when pAIs access their menu then makes the runtime look their default look. Co-authored-by: Timberpoes --- code/modules/mob/living/silicon/pai/pai.dm | 2 +- code/modules/mob/living/silicon/pai/software.dm | 2 -- html/paigrid.png | Bin 8672 -> 0 bytes 3 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 html/paigrid.png diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index 01ea13603ca..0f20e8455e7 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -186,7 +186,7 @@ . = ..() if(!. || !client) return FALSE - usr << browse_rsc('html/paigrid.png') // Go ahead and cache the interface resources as early as possible + client.perspective = EYE_PERSPECTIVE if(holoform) client.eye = src diff --git a/code/modules/mob/living/silicon/pai/software.dm b/code/modules/mob/living/silicon/pai/software.dm index 71dc0ccc73c..bbd874d9638 100644 --- a/code/modules/mob/living/silicon/pai/software.dm +++ b/code/modules/mob/living/silicon/pai/software.dm @@ -84,8 +84,6 @@