Files
Tarkov_LootRadius/LootRadiusPlugin.cs
DrakiaXYZ 71ef6f4fc6 - Resolve foot level loot check
- Add new patch to disallow dragging quest items into your inventory. Can be collected with Ctrl+Click
- Update version
2024-04-22 22:37:15 -07:00

24 lines
636 B
C#

using BepInEx;
using DrakiaXYZ.LootRadius.Helpers;
using DrakiaXYZ.LootRadius.Patches;
namespace DrakiaXYZ.LootRadius
{
[BepInPlugin("xyz.drakia.lootradius", "DrakiaXYZ-LootRadius", "1.0.1")]
[BepInDependency("com.spt-aki.core", "3.8.0")]
public class LootRadiusPlugin : BaseUnityPlugin
{
public static StashClass RadiusStash;
private void Awake()
{
Settings.Init(Config);
new GameStartedPatch().Enable();
new LootPanelOpenPatch().Enable();
new LootPanelClosePatch().Enable();
new QuestItemDragPatch().Enable();
}
}
}