* Revert Revert Exterminator pending newmed/redesign (#26978) This reverts commitf544c912Signed-off-by: pacable <igor.mamaev1@gmail.com> * Revert "remove GenericAntag completely (#28218)" This reverts commit489efeb717. * Revert "remove TerminatorRoleComponent (#30733)" This reverts commit0a4b220854. * fix broken tag Signed-off-by: pacable <igor.mamaev1@gmail.com> * delete invisible symbol Signed-off-by: pacable <igor.mamaev1@gmail.com> * ru locale Signed-off-by: pacable <igor.mamaev1@gmail.com> --------- Signed-off-by: pacable <igor.mamaev1@gmail.com>
12 lines
383 B
C#
12 lines
383 B
C#
using Content.Server.Objectives.Systems;
|
|
|
|
namespace Content.Server.Objectives.Components;
|
|
|
|
/// <summary>
|
|
/// Sets this objective's target to the exterminator's target override, if it has one.
|
|
/// If not it will be random.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(TerminatorTargetOverrideSystem))]
|
|
public sealed partial class TerminatorTargetOverrideComponent : Component
|
|
{
|
|
}
|