mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-09-16 07:12:18 +02:00
* save * cutting open your own letter check * typo * update and use API method * tweak text * generic counter system * update requires * review comments * api method * Update Content.Server/Objectives/Systems/ConditionCounterSystem.cs Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> * Update Content.Server/Objectives/Systems/ConditionCounterSystem.cs Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> * Update Content.Server/Objectives/Systems/ConditionCounterSystem.cs Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> * remove break --------- Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com>
13 lines
405 B
C#
13 lines
405 B
C#
namespace Content.Server.Objectives.Components;
|
|
|
|
/// <summary>
|
|
/// Objective condition that requires the player to cut into letters and packages addressed to others.
|
|
/// Requires <see cref="NumberObjectiveComponent"/> to function.
|
|
/// Requires <see cref="CounterConditionComponent"/> to function.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class MailFraudConditionComponent : Component
|
|
{
|
|
|
|
}
|