* add: fixed wrong item rotation in inventory * fix: forcepreset no longer starts round * fix: fix localisation * add: forcepreset command logging * add: Storage and items rework, part 1 * rework: item size rework part 2 * add: blood loss accent rework * no spaces
14 lines
330 B
C#
14 lines
330 B
C#
namespace Content.Server._White.Accent.Bloodloss;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class BloodLossAccentComponent : Component
|
|
{
|
|
[DataField]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float ReplaceProb = 0.6f;
|
|
|
|
[DataField]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string ToReplace = "...";
|
|
}
|