18 lines
646 B
C#
18 lines
646 B
C#
using Robust.Shared;
|
|
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared._RMC14.CCVar;
|
|
|
|
[CVarDefs]
|
|
public sealed class RMCCVars : CVars
|
|
{
|
|
public static readonly CVarDef<float> RMCMentorHelpRateLimitPeriod =
|
|
CVarDef.Create("rmc.mentor_help_rate_limit_period", 2f, CVar.SERVERONLY);
|
|
|
|
public static readonly CVarDef<int> RMCMentorHelpRateLimitCount =
|
|
CVarDef.Create("rmc.mentor_help_rate_limit_count", 10, CVar.SERVERONLY);
|
|
|
|
public static readonly CVarDef<string> RMCMentorHelpSound =
|
|
CVarDef.Create("rmc.mentor_help_sound", "/Audio/_RMC14/Effects/Admin/mhelp.ogg", CVar.ARCHIVE | CVar.CLIENTONLY);
|
|
}
|