From 54c281c60f3f840f8e8e803bc663892647606a32 Mon Sep 17 00:00:00 2001 From: Ivan Gordeev <70780122+kosmik641@users.noreply.github.com> Date: Sun, 11 Jul 2021 14:17:15 +0300 Subject: [PATCH] =?UTF-8?q?=D0=95=D0=BC508.=20(#266)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Исправлено условние скрытие панели РРИ --- lua/entities/gmod_subway_em508/cl_init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/entities/gmod_subway_em508/cl_init.lua b/lua/entities/gmod_subway_em508/cl_init.lua index 4bc1e7f..4511251 100644 --- a/lua/entities/gmod_subway_em508/cl_init.lua +++ b/lua/entities/gmod_subway_em508/cl_init.lua @@ -1485,7 +1485,7 @@ function ENT:Think() local typ = self:GetNW2Int("AnnType",1) self:HidePanel("RRI",typ~=1) - self:HidePanel("RRIScreen",typ~=1 or self.CurrentCamera ~= 6) + self:HidePanel("RRIScreen",typ~=1 or self.CurrentCamera ~= 7) self:ShowHide("E_informator",typ==1) self:HidePanel("ASNP",typ~=2) self:HidePanel("ASNPScreen",typ~=2)