Shadow and Light souls should not coexist.

This commit is contained in:
MobiusDevelopment 2020-11-27 09:17:08 +00:00
parent 6cc0ba120c
commit 6d61464881
2 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ public class EtcStatusUpdate implements IClientOutgoingPacket
if (_player.getRace() == Race.KAMAEL)
{
_isLight = _player.getLightMasterLevel() > 0;
_isShadow = _player.getShadowMasterLevel() > 0;
_isLight = !_isShadow && (_player.getLightMasterLevel() > 0);
}
else
{

View File

@ -41,8 +41,8 @@ public class EtcStatusUpdate implements IClientOutgoingPacket
if (_player.getRace() == Race.KAMAEL)
{
_isLight = _player.getLightMasterLevel() > 0;
_isShadow = _player.getShadowMasterLevel() > 0;
_isLight = !_isShadow && (_player.getLightMasterLevel() > 0);
}
else
{