mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Chill bounties + fixes * localize * fix arbitage (cherry picked from commit 4662d463b8f5cbef5d93ca00b67bae6d8bf5db47)
21 lines
564 B
C#
21 lines
564 B
C#
namespace Content.Server.Cargo.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for marking containers as
|
|
/// containing goods for fulfilling bounties.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CargoBountyLabelComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The ID for the bounty this label corresponds to.
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public string Id = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Used to prevent recursion in calculating the price.
|
|
/// </summary>
|
|
public bool Calculating;
|
|
}
|