3232import me .chancesd .pvpmanager .manager .PlayerManager ;
3333import me .chancesd .pvpmanager .player .CombatPlayer ;
3434import me .chancesd .pvpmanager .player .ProtectionType ;
35- import me .chancesd .pvpmanager .setting .Lang ;
3635import me .chancesd .pvpmanager .setting .Conf ;
3736import me .chancesd .pvpmanager .utils .CombatUtils ;
3837
@@ -204,7 +203,6 @@ final void cancelNewbie() {
204203 createAttack (false );
205204
206205 assertEquals (ProtectionType .NEWBIE , ph .checkProtection (attacker , defender ).type ());
207- verify (attacker , times (2 )).sendMessage (Lang .NEWBIE_PROTECTION_ON_HIT .msg ());
208206
209207 verify (mockEvent ).setCancelled (true );
210208 verify (projMockEvent ).setCancelled (true );
@@ -216,7 +214,6 @@ final void cancelPvPDisabled() {
216214 createAttack (false );
217215
218216 assertEquals (ProtectionType .PVPDISABLED , ph .checkProtection (attacker , defender ).type ());
219- verify (attacker , times (2 )).sendMessage (Lang .ATTACK_DENIED_OTHER .msg (defender .getName ()));
220217
221218 verify (mockEvent ).setCancelled (true );
222219 verify (projMockEvent ).setCancelled (true );
@@ -316,7 +313,6 @@ final void tntAttack() {
316313 assertTrue (CombatUtils .isPvP (tntEvent ));
317314
318315 callEvent (tntEvent );
319- // Verify combat tagging behavior for TNT attacks
320316 assertTrue (combatAttacker .isInCombat ());
321317 assertTrue (combatDefender .isInCombat ());
322318 }
@@ -330,7 +326,6 @@ final void areaEffectCloudAttack() {
330326 assertTrue (CombatUtils .isPvP (cloudEvent ));
331327
332328 callEvent (cloudEvent );
333- // Verify combat tagging for area effect clouds
334329 assertTrue (combatAttacker .isInCombat ());
335330 assertTrue (combatDefender .isInCombat ());
336331 }
0 commit comments