Cleanup: Remove redundant prototype name specifications (#35793)

* Remove redundant prototype name specifications

* These can stay
This commit is contained in:
Tayrtahn
2025-03-19 14:30:31 -04:00
committed by GitHub
parent 916661944b
commit 86aa82f2b6
107 changed files with 109 additions and 109 deletions

View File

@@ -11,7 +11,7 @@ namespace Content.Shared.Chemistry.Dispenser
/// to define which reagents it's able to dispense. Based off of how vending
/// machines define their inventory.
/// </summary>
[Serializable, NetSerializable, Prototype("reagentDispenserInventory")]
[Serializable, NetSerializable, Prototype]
public sealed partial class ReagentDispenserInventoryPrototype : IPrototype
{
[DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer<EntityPrototype>))]

View File

@@ -6,7 +6,7 @@ namespace Content.Shared.Chemistry.Reaction;
/// <summary>
/// This is a prototype for a method of chemical mixing, to be used by <see cref="ReactionMixerComponent"/>
/// </summary>
[Prototype("mixingCategory")]
[Prototype]
public sealed partial class MixingCategoryPrototype : IPrototype
{
/// <inheritdoc/>

View File

@@ -11,7 +11,7 @@ namespace Content.Shared.Chemistry.Reaction
/// <summary>
/// Prototype for chemical reaction definitions
/// </summary>
[Prototype("reaction")]
[Prototype]
public sealed partial class ReactionPrototype : IPrototype, IComparable<ReactionPrototype>
{
[ViewVariables]

View File

@@ -2,7 +2,7 @@
namespace Content.Shared.Chemistry.Reaction;
[Prototype("reactiveGroup")]
[Prototype]
public sealed partial class ReactiveGroupPrototype : IPrototype
{
[IdDataField]

View File

@@ -20,7 +20,7 @@ using Robust.Shared.Utility;
namespace Content.Shared.Chemistry.Reagent
{
[Prototype("reagent")]
[Prototype]
[DataDefinition]
public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype
{