1.1.0 - Added a config option to use tMx or Vanilla Materials
This commit is contained in:
22
tTPConfigs.cs
Normal file
22
tTPConfigs.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Terraria.ModLoader.Config;
|
||||
|
||||
namespace tTP
|
||||
{
|
||||
public class tTPConfigs : ModConfig
|
||||
{
|
||||
[Header("Craft")]
|
||||
|
||||
[Label("Use tMx Tablets")]
|
||||
[Tooltip("Use tMX 4 Tablets to craft a Personal Teleporter. If false, will use a recipe with vanilla materials.")]
|
||||
[DefaultValue(true)]
|
||||
public bool UsetMxTablets;
|
||||
|
||||
public override ConfigScope Mode => (ConfigScope)0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user