Files
space-station-14/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs
mq 4920c9e907 Update (MOST) instances of EntityUid, Component in GunSystem to Entity<T> (#41966)
* Entity<T>, skipping Magazine and ChamberMagazine

* missed some

* AUGH!!

* ballistic examine

* dotnet hates me

* WHY ARE YOU CALLED THAT!!!!

* cheers aada
2026-01-01 19:00:49 +00:00

11 lines
290 B
C#

namespace Content.Server.Weapons.Ranged.Components;
[RegisterComponent]
public sealed partial class ChemicalAmmoComponent : Component
{
public const string DefaultSolutionName = "ammo";
[DataField("solution")]
public string SolutionName { get; set; } = DefaultSolutionName;
}