AddItemResult.refusedByPlugin
public bool refusedByPlugin { get; }Description#
Gets if a plugin was responsible for refusing the item
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddItemResult target) { bool result = target.refusedByPlugin; } }