This is the part where I realize I forgot to fix these as part of sandboxing.
This commit is contained in:
@@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Metabolism
|
|||||||
/// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target,
|
/// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target,
|
||||||
/// and to update it's thirst values.
|
/// and to update it's thirst values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
class DefaultDrink : IMetabolizable
|
public class DefaultDrink : IMetabolizable
|
||||||
{
|
{
|
||||||
//Rate of metabolism in units / second
|
//Rate of metabolism in units / second
|
||||||
private ReagentUnit _metabolismRate;
|
private ReagentUnit _metabolismRate;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Metabolism
|
|||||||
/// Default metabolism for food reagents. Attempts to find a HungerComponent on the target,
|
/// Default metabolism for food reagents. Attempts to find a HungerComponent on the target,
|
||||||
/// and to update it's hunger values.
|
/// and to update it's hunger values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
class DefaultFood : IMetabolizable
|
public class DefaultFood : IMetabolizable
|
||||||
{
|
{
|
||||||
//Rate of metabolism in units / second
|
//Rate of metabolism in units / second
|
||||||
private ReagentUnit _metabolismRate;
|
private ReagentUnit _metabolismRate;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ using Robust.Shared.Serialization;
|
|||||||
|
|
||||||
namespace Content.Server.Chemistry.ReactionEffects
|
namespace Content.Server.Chemistry.ReactionEffects
|
||||||
{
|
{
|
||||||
class ExplosionReactionEffect : IReactionEffect
|
public class ExplosionReactionEffect : IReactionEffect
|
||||||
{
|
{
|
||||||
private float _devastationRange;
|
private float _devastationRange;
|
||||||
private float _heavyImpactRange;
|
private float _heavyImpactRange;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization;
|
|||||||
namespace Content.Shared.Chemistry
|
namespace Content.Shared.Chemistry
|
||||||
{
|
{
|
||||||
//Default metabolism for reagents. Metabolizes the reagent with no effects
|
//Default metabolism for reagents. Metabolizes the reagent with no effects
|
||||||
class DefaultMetabolizable : IMetabolizable
|
public class DefaultMetabolizable : IMetabolizable
|
||||||
{
|
{
|
||||||
//Rate of metabolism in units / second
|
//Rate of metabolism in units / second
|
||||||
private double _metabolismRate = 1;
|
private double _metabolismRate = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user