Update to Ror2 1.4.0

This commit is contained in:
2025-11-30 18:27:53 +00:00
parent 5285add77e
commit b8ef84deb2
3 changed files with 12 additions and 12 deletions

View File

@@ -36,9 +36,9 @@ namespace AntiYoink
public const string PluginGUID = PluginAuthor + "." + PluginName;
public const string PluginAuthor = "devplayer0";
public const string PluginName = "AntiYoink";
public const string PluginVersion = "0.1.0";
public const string PluginVersion = "0.1.1";
private const bool DevMode = true;
private const bool DevMode = false;
public static ConfigEntry<uint> MaxItemCountDelta { get; set; }
@@ -80,7 +80,7 @@ namespace AntiYoink
foreach (var i in inv.itemAcquisitionOrder)
{
if (ItemCatalog.GetItemDef(i).hidden) continue;
itemCount += inv.GetItemCount(i);
itemCount += inv.GetItemCountPermanent(i);
}
return itemCount;