1
0
Fork 0

Change blacklist

master
Liza 2023-09-26 19:58:51 +02:00
parent 6e8b885d75
commit 778df35626
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 8 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<PropertyGroup> <PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath> <DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<AutoRetainerLibPath>$(appdata)\XIVLauncher\installedPlugins\AutoRetainer\4.1.1.8\</AutoRetainerLibPath> <AutoRetainerLibPath>$(appdata)\XIVLauncher\installedPlugins\AutoRetainer\4.1.2.3\</AutoRetainerLibPath>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'"> <PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">

View File

@ -4,11 +4,17 @@ namespace ARDiscard.GameData;
internal static class InternalConfiguration internal static class InternalConfiguration
{ {
public static IReadOnlyList<uint> BlacklistedItems = new List<uint> public static readonly IReadOnlyList<uint> BlacklistedItems = new List<uint>
{ {
2820, // red onion helm 2820, // red onion helm
16039, // ala mhigan earrings 16039, // ala mhigan earrings
24589, // aetheryte earrings 24589, // aetheryte earrings
33648, // menphina's earrings 33648, // menphina's earrings
21197, // UCOB
23175, // UWU
28633, // TEA
36810, // DSR
38951, // TOP
}.AsReadOnly(); }.AsReadOnly();
} }