From 5cd563c611cceb6a5cf7f5de68c1bebac923d75f Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 30 Jan 2020 14:16:40 +0000 Subject: [PATCH] Use simple class name for merchant and door information. --- .../gameserver/model/actor/instance/DoorInstance.java | 4 ++-- .../gameserver/model/actor/instance/MerchantInstance.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/DoorInstance.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/DoorInstance.java index a926db1e0b..9bf076c7db 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/DoorInstance.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/DoorInstance.java @@ -595,7 +595,7 @@ public class DoorInstance extends Creature final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId()); final StringBuilder html1 = new StringBuilder(""); - html1.append(""); + html1.append(""); html1.append(""); html1.append(""); @@ -603,7 +603,7 @@ public class DoorInstance extends Creature html1.append(""); html1.append(""); - html1.append(""); + html1.append(""); html1.append(""); html1.append("
S.Y.L. Says:
Door Information
Current HP " + getCurrentHp() + "
Max HP " + getMaxHp() + "
Door ID: " + _doorId + "

Class: " + getClass().getName() + "
Class: " + getClass().getSimpleName() + "

"); diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/MerchantInstance.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/MerchantInstance.java index ece58786f8..9bda2cfe9a 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/MerchantInstance.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/MerchantInstance.java @@ -324,7 +324,7 @@ public class MerchantInstance extends FolkInstance html1.append("Level: " + getLevel() + ""); html1.append("
"); - html1.append("Class: " + getClass().getName() + ""); + html1.append("Class: " + getClass().getSimpleName() + ""); html1.append("
"); html1.append("");