Borg hands & hand whitelisting (#38668)
* Borg hands & hand whitelisting * yaml linted * yaml linted (x2) * yaml linted (x3) * my storage tests so pass * no need for SetCount * ok new stuff you can get fixed too * oops * staque * what if we addressed feedback * my place so holder * what if we addresesd feedback * what if i did it correctly * terminating or deleted
This commit is contained in:
committed by
GitHub
parent
8b76ace136
commit
39cb27fe21
@@ -34,13 +34,6 @@ namespace Content.Shared.Stacks
|
||||
[ViewVariables(VVAccess.ReadOnly)]
|
||||
public bool Unlimited { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Lingering stacks will remain present even when there are no items.
|
||||
/// Instead, they will become transparent.
|
||||
/// </summary>
|
||||
[DataField("lingering"), ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool Lingering;
|
||||
|
||||
[DataField("throwIndividually"), ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool ThrowIndividually { get; set; } = false;
|
||||
|
||||
@@ -93,13 +86,10 @@ namespace Content.Shared.Stacks
|
||||
public int Count { get; }
|
||||
public int? MaxCount { get; }
|
||||
|
||||
public bool Lingering;
|
||||
|
||||
public StackComponentState(int count, int? maxCount, bool lingering)
|
||||
public StackComponentState(int count, int? maxCount)
|
||||
{
|
||||
Count = count;
|
||||
MaxCount = maxCount;
|
||||
Lingering = lingering;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user