Skip to main content

Merchant.UpdateSetBonus

Declaration#

public virtual void UpdateSetBonus(string id)

Parameters#

NameDescription
idId of the set to update

Description#

Update Item Set Bonus values

Usage#

Example
using NullSave.GDTK.Inventory;using UnityEngine;public class Example : MonoBehaviour{    public void ExampleMethod(Merchant target, string setId)    {        target.UpdateSetBonus(setId);    }}