0.2.0 commit
This commit is contained in:
24
tMxConfigs.cs
Normal file
24
tMxConfigs.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.ComponentModel;
|
||||
using Terraria.ModLoader.Config;
|
||||
|
||||
namespace tMx
|
||||
{
|
||||
public class tMxConfigs : ModConfig
|
||||
{
|
||||
[Header("Tweaks")]
|
||||
|
||||
[Label("No Potions Delay")]
|
||||
[Tooltip("No delay between healing/mana potions use. Debuff = Off")]
|
||||
[DefaultValue(false)]
|
||||
public bool NoPotionDelay;
|
||||
|
||||
[Header("Mechanics")]
|
||||
|
||||
[Label("Protect item(s) from pig.")]
|
||||
[Tooltip("The clean command will not delete researched item(s) present in your piggy bank.")]
|
||||
[DefaultValue(false)]
|
||||
public bool CleanResearchedPiggyProtect;
|
||||
|
||||
public override ConfigScope Mode => (ConfigScope)0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user