check for invalid animations I hate animations ignore broken bones from god knows what fix more idiotic mod things fully ignore garbage skeletons that fail to process properly fix my own mistakes fix more bullshit check for filename length and continue idk some cleanup fix spoopy skellingtons change loglevel of tris
12 lines
389 B
C#
12 lines
389 B
C#
using MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public class XivDataStorageService : ConfigurationServiceBase<XivDataStorageConfig>
|
|
{
|
|
public const string ConfigName = "xivdatastorage.json";
|
|
|
|
public XivDataStorageService(string configDir) : base(configDir) { }
|
|
|
|
protected override string ConfigurationName => ConfigName;
|
|
} |