23 lines
484 B
C#
23 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Terraria.ModLoader;
|
|
using Terraria;
|
|
|
|
namespace tMx.Tweaks.Potion
|
|
{
|
|
internal class PotionLength : GlobalItem
|
|
{
|
|
public override void OnConsumeItem(Item item, Player player)
|
|
{
|
|
tMxConfigs config = ModContent.GetInstance<tMxConfigs>();
|
|
if (item.potion)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|