Can we add in the new Cursed Cauldron and the FogMachine
Support for new Halloween itemsSolved
void OnItemUse(Item item, int amountToUse)
{
// ignore players
if (item?.parent?.playerOwner != null) return;
// refund fuel
if (item.info.itemid == -946369541) item.amount += amountToUse;
}
{
// ignore players
if (item?.parent?.playerOwner != null) return;
// refund fuel
if (item.info.itemid == -946369541) item.amount += amountToUse;
}
Added locally
Locked automatically