removed necroskeletoncount

This commit is contained in:
Lucca Faria Ferri 2023-02-16 16:45:58 -08:00
parent 5ac2ca9e2b
commit a8ece3a868
2 changed files with 2 additions and 8 deletions

View File

@ -3203,7 +3203,7 @@ public class Player : Actor, IMessageConsumer, IUpdateable
NecroSkeletons.Clear();
}
while (NecroSkeletons.Count < GameServerConfig.Instance.NecroSkeletonCount)
while (NecroSkeletons.Count < 7)
{
var necroSkeleton = new NecromancerSkeleton_A(World, ActorSno._p6_necro_commandskeletons_a, this);
necroSkeleton.Brain.DeActivate();

View File

@ -306,13 +306,7 @@ namespace DiIiS_NA.GameServer
get => GetBoolean(nameof(ForceMinimapVisibility), false);
set => Set(nameof(ForceMinimapVisibility), value);
}
public int NecroSkeletonCount
{
get => GetInt(nameof(NecroSkeletonCount), 7);
set => Set(nameof(NecroSkeletonCount), value);
}
#endregion
public static GameServerConfig Instance { get; } = new();