Departmental Economy (#36445)
* Cargo Accounts, Request Consoles, and lock boxes * Funding Allocation Computer * final changes * test fix * remove dumb code * ScarKy0 review * first cour * second cour * Update machines.yml * review --------- Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Co-authored-by: Milon <milonpl.git@proton.me>
This commit is contained in:
17
Content.Shared/Cargo/Components/OverrideSellComponent.cs
Normal file
17
Content.Shared/Cargo/Components/OverrideSellComponent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Content.Shared.Cargo.Prototypes;
|
||||
using Robust.Shared.Prototypes;
|
||||
|
||||
namespace Content.Shared.Cargo.Components;
|
||||
|
||||
/// <summary>
|
||||
/// Makes a sellable object portion out its value to a specified department rather than the station default
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public sealed partial class OverrideSellComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// The account that will receive the primary funds from this being sold.
|
||||
/// </summary>
|
||||
[DataField(required: true)]
|
||||
public ProtoId<CargoAccountPrototype> OverrideAccount;
|
||||
}
|
||||
Reference in New Issue
Block a user