10 lines
320 B
C#
10 lines
320 B
C#
namespace NeonSprawl.Server.Game.Factions;
|
|
|
|
/// <summary>Stable deny reason codes for faction standing store operations (NEO-135).</summary>
|
|
public static class FactionStandingReasonCodes
|
|
{
|
|
public const string UnknownFaction = "unknown_faction";
|
|
|
|
public const string PlayerNotWritable = "player_not_writable";
|
|
}
|