unfuck every reagent effect
This commit is contained in:
@@ -165,8 +165,9 @@ namespace Content.Server.Body.Systems
|
|||||||
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
||||||
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
||||||
$"Metabolism effect {effect.GetType().Name} of reagent {args.Reagent.Name:reagent} applied on entity {entity} at {entity.Transform.Coordinates}");
|
$"Metabolism effect {effect.GetType().Name} of reagent {args.Reagent.Name:reagent} applied on entity {entity} at {entity.Transform.Coordinates}");
|
||||||
effect.Effect(args);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
effect.Effect(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -119,8 +119,9 @@ namespace Content.Shared.Chemistry.Reaction
|
|||||||
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
||||||
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
||||||
$"Reaction effect {effect.GetType().Name} of reaction ${reaction.ID:reaction} applied on entity {entity} at {entity.Transform.Coordinates}");
|
$"Reaction effect {effect.GetType().Name} of reaction ${reaction.ID:reaction} applied on entity {entity} at {entity.Transform.Coordinates}");
|
||||||
effect.Effect(args);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
effect.Effect(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -66,8 +66,9 @@ namespace Content.Shared.Chemistry
|
|||||||
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
||||||
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
||||||
$"Reactive effect {effect.GetType().Name} of reagent {reagent.ID:reagent} with method {method} applied on entity {entity} at {entity.Transform.Coordinates}");
|
$"Reactive effect {effect.GetType().Name} of reagent {reagent.ID:reagent} with method {method} applied on entity {entity} at {entity.Transform.Coordinates}");
|
||||||
effect.Effect(args);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
effect.Effect(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -93,8 +94,9 @@ namespace Content.Shared.Chemistry
|
|||||||
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
var entity = EntityManager.GetEntity(args.SolutionEntity);
|
||||||
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
_logSystem.Add(LogType.ReagentEffect, effect.LogImpact,
|
||||||
$"Reactive effect {effect.GetType().Name} of {entity} using reagent {reagent.ID} with method {method} at {entity.Transform.Coordinates}");
|
$"Reactive effect {effect.GetType().Name} of {entity} using reagent {reagent.ID} with method {method} at {entity.Transform.Coordinates}");
|
||||||
effect.Effect(args);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
effect.Effect(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user