-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPaSConfig.cs
34 lines (32 loc) · 1.07 KB
/
PaSConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.Serialization;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
using Terraria.ModLoader.Config;
using Terraria.ModLoader.Config.UI;
using Terraria.UI;
namespace PissAndShit
{
public class PaSConfig : ModConfig
{
public override ConfigScope Mode => ConfigScope.ServerSide;
[DefaultValue(false)]
[Label("Disable zombie speaking enchant table")]
[Tooltip("Removes zombies having the chance to make horrid screeching noises")]
public bool disableZombieScreech;
[DefaultValue(false)]
[Label("Disable boss1 music in endlesser mode")]
[Tooltip("Disables the track 'Boss1' from constantly playing while endlesser mode is active")]
public bool disableBossOneMusic;
}
}