Replaced instanceof L2ServitorInstance with isServitor method.
This commit is contained in:
parent
e9e7d40628
commit
b33537aa50
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,6 @@ import com.l2jmobius.gameserver.model.actor.L2Npc;
|
|||||||
import com.l2jmobius.gameserver.model.actor.L2Summon;
|
import com.l2jmobius.gameserver.model.actor.L2Summon;
|
||||||
import com.l2jmobius.gameserver.model.actor.instance.L2DoorInstance;
|
import com.l2jmobius.gameserver.model.actor.instance.L2DoorInstance;
|
||||||
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||||
import com.l2jmobius.gameserver.model.actor.instance.L2ServitorInstance;
|
|
||||||
import com.l2jmobius.gameserver.model.events.EventDispatcher;
|
import com.l2jmobius.gameserver.model.events.EventDispatcher;
|
||||||
import com.l2jmobius.gameserver.model.events.impl.events.OnTvTEventFinish;
|
import com.l2jmobius.gameserver.model.events.impl.events.OnTvTEventFinish;
|
||||||
import com.l2jmobius.gameserver.model.events.impl.events.OnTvTEventKill;
|
import com.l2jmobius.gameserver.model.events.impl.events.OnTvTEventKill;
|
||||||
@ -816,7 +815,7 @@ public class TvTEvent
|
|||||||
|
|
||||||
L2PcInstance killerPlayerInstance = null;
|
L2PcInstance killerPlayerInstance = null;
|
||||||
|
|
||||||
if (killerCharacter.isPet() || (killerCharacter instanceof L2ServitorInstance))
|
if (killerCharacter.isPet() || killerCharacter.isServitor())
|
||||||
{
|
{
|
||||||
killerPlayerInstance = ((L2Summon) killerCharacter).getOwner();
|
killerPlayerInstance = ((L2Summon) killerCharacter).getOwner();
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
@ -40,7 +40,7 @@ public class PetStatusUpdate implements IClientOutgoingPacket
|
|||||||
_curFed = pet.getCurrentFed(); // how fed it is
|
_curFed = pet.getCurrentFed(); // how fed it is
|
||||||
_maxFed = pet.getMaxFed(); // max fed it can be
|
_maxFed = pet.getMaxFed(); // max fed it can be
|
||||||
}
|
}
|
||||||
else if (_summon instanceof L2ServitorInstance)
|
else if (_summon.isServitor())
|
||||||
{
|
{
|
||||||
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
final L2ServitorInstance sum = (L2ServitorInstance) _summon;
|
||||||
_curFed = sum.getLifeTimeRemaining();
|
_curFed = sum.getLifeTimeRemaining();
|
||||||
|
Loading…
Reference in New Issue
Block a user