Skip to content

Commit

Permalink
fixed entity spawning
Browse files Browse the repository at this point in the history
  • Loading branch information
foglio1024 committed Apr 26, 2017
1 parent ba8b836 commit c6cc62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TCC.UI/EntitiesManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void SpawnNPC(ushort zoneId, uint templateId, ulong entityId, Visi
{
System.Console.WriteLine("[S_SPAWN_NPC] 950 - {0} - {1}", templateId, m.Name);
}
if ((m.IsBoss && m.MaxHP >= 40000000) || force)
if ((m.IsBoss || m.MaxHP >= 40000000) || force)
{
App.Current.Dispatcher.Invoke(() =>
{
Expand Down

0 comments on commit c6cc62d

Please sign in to comment.