Fix plant metabolism. (#5775)

This commit is contained in:
Leon Friedrich
2021-12-14 02:30:15 +13:00
committed by GitHub
parent 7f81f0b8b8
commit 5835ac045b

View File

@@ -124,8 +124,9 @@ namespace Content.Shared.Chemistry.Reagent
var entity = args.SolutionEntity;
EntitySystem.Get<SharedAdminLogSystem>().Add(LogType.ReagentEffect, plantMetabolizable.LogImpact,
$"Plant metabolism effect {plantMetabolizable.GetType().Name:effect} of reagent {ID:reagent} applied on entity {entMan.ToPrettyString(entity):entity} at {entMan.GetComponent<TransformComponent>(entity).Coordinates:coordinates}");
plantMetabolizable.Effect(args);
}
plantMetabolizable.Effect(args);
}
}
}