diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs
index 23bf6b2157..03c0ffe0c1 100644
--- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs
+++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs
@@ -14,31 +14,31 @@ public sealed partial class SolutionRegenerationComponent : Component
///
/// The name of the solution to add to.
///
- [DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)]
+ [DataField("solution", required: true)]
public string SolutionName = string.Empty;
///
/// The solution to add reagents to.
///
- [DataField("solutionRef")]
- public Entity? Solution = null;
+ [DataField]
+ public Entity? SolutionRef = null;
///
/// The reagent(s) to be regenerated in the solution.
///
- [DataField("generated", required: true), ViewVariables(VVAccess.ReadWrite)]
+ [DataField(required: true)]
public Solution Generated = default!;
///
/// How long it takes to regenerate once.
///
- [DataField("duration"), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public TimeSpan Duration = TimeSpan.FromSeconds(1);
///
/// The time when the next regeneration will occur.
///
- [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)]
+ [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan NextRegenTime = TimeSpan.FromSeconds(0);
}
diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs
index 6a60062857..bccd594706 100644
--- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs
+++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs
@@ -24,7 +24,7 @@ public sealed class SolutionRegenerationSystem : EntitySystem
// timer ignores if its full, it's just a fixed cycle
regen.NextRegenTime = _timing.CurTime + regen.Duration;
- if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution))
+ if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.SolutionRef, out var solution))
{
var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume);
if (amount <= FixedPoint2.Zero)
@@ -41,7 +41,7 @@ public sealed class SolutionRegenerationSystem : EntitySystem
generated = regen.Generated.Clone().SplitSolution(amount);
}
- _solutionContainer.TryAddSolution(regen.Solution.Value, generated);
+ _solutionContainer.TryAddSolution(regen.SolutionRef.Value, generated);
}
}
}
diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs
index 4fb4fe9438..50cb5f5195 100644
--- a/Content.Shared/Fluids/Components/DrainComponent.cs
+++ b/Content.Shared/Fluids/Components/DrainComponent.cs
@@ -23,14 +23,14 @@ public sealed partial class DrainComponent : Component
[DataField]
public Entity? Solution = null;
- [DataField("accumulator")]
+ [DataField]
public float Accumulator = 0f;
///
/// Does this drain automatically absorb surrouding puddles? Or is it a drain designed to empty
- /// solutions in it manually?
+ /// solutions in it manually?
///
- [DataField("autoDrain"), ViewVariables(VVAccess.ReadOnly)]
+ [DataField]
public bool AutoDrain = true;
///
@@ -38,47 +38,47 @@ public sealed partial class DrainComponent : Component
/// Divided by puddles, so if there are 5 puddles this will take 1/5 from each puddle.
/// This will stay fixed to 1 second no matter what DrainFrequency is.
///
- [DataField("unitsPerSecond")]
+ [DataField]
public float UnitsPerSecond = 6f;
///
/// How many units are ejected from the buffer per second.
///
- [DataField("unitsDestroyedPerSecond")]
+ [DataField]
public float UnitsDestroyedPerSecond = 3f;
///
/// How many (unobstructed) tiles away the drain will
/// drain puddles from.
///
- [DataField("range"), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public float Range = 2f;
///
/// How often in seconds the drain checks for puddles around it.
/// If the EntityQuery seems a bit unperformant this can be increased.
///
- [DataField("drainFrequency")]
+ [DataField]
public float DrainFrequency = 1f;
///
/// How much time it takes to unclog it with a plunger
///
- [DataField("unclogDuration"), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public float UnclogDuration = 1f;
///
/// What's the probability of uncloging on each try
///
- [DataField("unclogProbability"), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public float UnclogProbability = 0.75f;
- [DataField("manualDrainSound"), ViewVariables(VVAccess.ReadOnly)]
+ [DataField]
public SoundSpecifier ManualDrainSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg");
- [DataField("plungerSound"), ViewVariables(VVAccess.ReadOnly)]
+ [DataField]
public SoundSpecifier PlungerSound = new SoundPathSpecifier("/Audio/Items/Janitor/plunger.ogg");
- [DataField("unclogSound"), ViewVariables(VVAccess.ReadOnly)]
+ [DataField]
public SoundSpecifier UnclogSound = new SoundPathSpecifier("/Audio/Effects/Fluids/glug.ogg");
}