- Resolve foot level loot check

- Add new patch to disallow dragging quest items into your inventory. Can be collected with Ctrl+Click
- Update version
This commit is contained in:
DrakiaXYZ
2024-04-22 22:37:15 -07:00
parent bd6984557f
commit 71ef6f4fc6
5 changed files with 64 additions and 28 deletions

View File

@@ -4,7 +4,7 @@ using DrakiaXYZ.LootRadius.Patches;
namespace DrakiaXYZ.LootRadius
{
[BepInPlugin("xyz.drakia.lootradius", "DrakiaXYZ-LootRadius", "1.0.0")]
[BepInPlugin("xyz.drakia.lootradius", "DrakiaXYZ-LootRadius", "1.0.1")]
[BepInDependency("com.spt-aki.core", "3.8.0")]
public class LootRadiusPlugin : BaseUnityPlugin
{
@@ -17,6 +17,7 @@ namespace DrakiaXYZ.LootRadius
new GameStartedPatch().Enable();
new LootPanelOpenPatch().Enable();
new LootPanelClosePatch().Enable();
new QuestItemDragPatch().Enable();
}
}
}