diff --git a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_7.0_PreludeOfWar/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/Spawn.java index a9116607d1..2eeadd94db 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/Spawn.java @@ -439,6 +439,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + notifyNpcSpawned(npc); // Check for overriden by spawnlist AIData diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/util/MinionList.java index e8181a14d8..28f40e1f42 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; } diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/Spawn.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/Spawn.java index 78c3949b5d..71c9231cda 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/Spawn.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/Spawn.java @@ -442,6 +442,12 @@ public class Spawn extends Location implements IIdentifiable, INamable // Spawn NPC npc.spawnMe(newlocx, newlocy, newlocz); + // Make sure info is broadcasted in instances + if (npc.getInstanceId() > 0) + { + npc.broadcastInfo(); + } + if (_spawnTemplate != null) { _spawnTemplate.notifySpawnNpc(npc); diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/util/MinionList.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/util/MinionList.java index 5ff1e601bc..f39019030f 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/util/MinionList.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/util/MinionList.java @@ -325,6 +325,12 @@ public class MinionList minion.spawnMe(newX, newY, master.getZ()); + // Make sure info is broadcasted in instances + if (minion.getInstanceId() > 0) + { + minion.broadcastInfo(); + } + return minion; }