Removed ProtectorInstance testing loggers.

Contributed by Dagger.
This commit is contained in:
MobiusDevelopment 2020-09-03 11:03:30 +00:00
parent a4ee2b9a0f
commit 7142268525
2 changed files with 0 additions and 4 deletions

View File

@ -55,7 +55,6 @@ public class ProtectorInstance extends NpcInstance
{
if (((player.getKarma() > 0) && Config.PROTECTOR_PLAYER_PK) || ((player.getPvpFlag() != 0) && Config.PROTECTOR_PLAYER_PVP))
{
LOGGER.warning("player: " + player);
handleCast(player, Config.PROTECTOR_SKILLID, Config.PROTECTOR_SKILLLEVEL);
}
final Summon activePet = player.getPet();
@ -66,7 +65,6 @@ public class ProtectorInstance extends NpcInstance
if (((activePet.getKarma() > 0) && Config.PROTECTOR_PLAYER_PK) || ((activePet.getPvpFlag() != 0) && Config.PROTECTOR_PLAYER_PVP))
{
LOGGER.warning("activePet: " + activePet);
handleCastonPet(activePet, Config.PROTECTOR_SKILLID, Config.PROTECTOR_SKILLLEVEL);
}
}

View File

@ -55,7 +55,6 @@ public class ProtectorInstance extends NpcInstance
{
if (((player.getKarma() > 0) && Config.PROTECTOR_PLAYER_PK) || ((player.getPvpFlag() != 0) && Config.PROTECTOR_PLAYER_PVP))
{
LOGGER.warning("player: " + player);
handleCast(player, Config.PROTECTOR_SKILLID, Config.PROTECTOR_SKILLLEVEL);
}
final Summon activePet = player.getPet();
@ -66,7 +65,6 @@ public class ProtectorInstance extends NpcInstance
if (((activePet.getKarma() > 0) && Config.PROTECTOR_PLAYER_PK) || ((activePet.getPvpFlag() != 0) && Config.PROTECTOR_PLAYER_PVP))
{
LOGGER.warning("activePet: " + activePet);
handleCastonPet(activePet, Config.PROTECTOR_SKILLID, Config.PROTECTOR_SKILLLEVEL);
}
}