From 88012da16155abbe665e7376d4082ac16e59a590 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sat, 7 Oct 2017 11:31:22 +0000 Subject: [PATCH] Do not show custom faction max level message. --- .../com/l2jmobius/gameserver/model/events/AbstractScript.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/events/AbstractScript.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/events/AbstractScript.java index 13bb8ff21f..072ea5e2da 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/events/AbstractScript.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/events/AbstractScript.java @@ -3011,10 +3011,6 @@ public abstract class AbstractScript extends ManagedScript implements IEventTime { player.sendPacket(new ExShowScreenMessage("Your reputation with the " + faction.toString().toLowerCase().replace("_", " ") + " faction was increased by " + factionPoints + " points.", 5000)); } - else - { - player.sendPacket(new ExShowScreenMessage("Your reputation with the " + faction.toString().toLowerCase().replace("_", " ") + " faction is at the highest level possible.", 5000)); - } player.addFactionPoints(faction, factionPoints); final int newLevel = player.getFactionLevel(faction);