diff --git a/Content.Server/Chemistry/Metabolism/DefaultDrink.cs b/Content.Server/Chemistry/Metabolism/DefaultDrink.cs index d604f46fa8..027695432d 100644 --- a/Content.Server/Chemistry/Metabolism/DefaultDrink.cs +++ b/Content.Server/Chemistry/Metabolism/DefaultDrink.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Metabolism /// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target, /// and to update it's thirst values. /// - class DefaultDrink : IMetabolizable + public class DefaultDrink : IMetabolizable { //Rate of metabolism in units / second private ReagentUnit _metabolismRate; diff --git a/Content.Server/Chemistry/Metabolism/DefaultFood.cs b/Content.Server/Chemistry/Metabolism/DefaultFood.cs index e240b661b1..e6be251147 100644 --- a/Content.Server/Chemistry/Metabolism/DefaultFood.cs +++ b/Content.Server/Chemistry/Metabolism/DefaultFood.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Metabolism /// Default metabolism for food reagents. Attempts to find a HungerComponent on the target, /// and to update it's hunger values. /// - class DefaultFood : IMetabolizable + public class DefaultFood : IMetabolizable { //Rate of metabolism in units / second private ReagentUnit _metabolismRate; diff --git a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs index b26d563442..f552652678 100644 --- a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs @@ -7,7 +7,7 @@ using Robust.Shared.Serialization; namespace Content.Server.Chemistry.ReactionEffects { - class ExplosionReactionEffect : IReactionEffect + public class ExplosionReactionEffect : IReactionEffect { private float _devastationRange; private float _heavyImpactRange; diff --git a/Content.Shared/Chemistry/DefaultMetabolizable.cs b/Content.Shared/Chemistry/DefaultMetabolizable.cs index 7f8a72983a..0ebdc0b01f 100644 --- a/Content.Shared/Chemistry/DefaultMetabolizable.cs +++ b/Content.Shared/Chemistry/DefaultMetabolizable.cs @@ -6,7 +6,7 @@ using Robust.Shared.Serialization; namespace Content.Shared.Chemistry { //Default metabolism for reagents. Metabolizes the reagent with no effects - class DefaultMetabolizable : IMetabolizable + public class DefaultMetabolizable : IMetabolizable { //Rate of metabolism in units / second private double _metabolismRate = 1;