From e62fc4964afe66b9595e42ca1fa711d2dc0cb2de Mon Sep 17 00:00:00 2001 From: LG Archer Date: Thu, 30 Mar 2017 21:04:23 +0100 Subject: [PATCH] + Fix issues with status bars not updating. The health bar status updates do not require prerequisite checks as they use flags within the packet to determine the proper state of being yellow or green or both. --- Server/Mobile.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Server/Mobile.cs b/Server/Mobile.cs index 70e5b0e3..7d754d28 100644 --- a/Server/Mobile.cs +++ b/Server/Mobile.cs @@ -9183,10 +9183,10 @@ namespace Server m.m_NetState.Send(MobileIncoming.Create(m.m_NetState, m, this)); if ( m.m_NetState.StygianAbyss ) { - if ( m_Poison != null ) + //if ( m_Poison != null ) m.m_NetState.Send( new HealthbarPoison( this ) ); - if ( m_Blessed || m_YellowHealthbar ) + //if ( m_Blessed || m_YellowHealthbar ) m.m_NetState.Send( new HealthbarYellow( this ) ); } @@ -9207,10 +9207,10 @@ namespace Server ourState.Send(MobileIncoming.Create(ourState, this, m)); if ( ourState.StygianAbyss ) { - if ( m.Poisoned ) + //if ( m.Poisoned ) ourState.Send( new HealthbarPoison( m ) ); - if ( m.Blessed || m.YellowHealthbar ) + //if ( m.Blessed || m.YellowHealthbar ) ourState.Send( new HealthbarYellow( m ) ); } @@ -9241,10 +9241,10 @@ namespace Server ns.Send(MobileIncoming.Create(ns, ns.Mobile, this)); if ( ns.StygianAbyss ) { - if ( m_Poison != null ) + //if ( m_Poison != null ) ns.Send( new HealthbarPoison( this ) ); - if ( m_Blessed || m_YellowHealthbar ) + //if ( m_Blessed || m_YellowHealthbar ) ns.Send( new HealthbarYellow( this ) ); } @@ -11347,4 +11347,4 @@ namespace Server { } } -} \ No newline at end of file +}