diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 637d64d9a8..4ccdf608b8 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -51,7 +51,7 @@ public sealed partial class ArtifactSystem : EntitySystem /// private void GetPrice(EntityUid uid, ArtifactComponent component, ref PriceCalculationEvent args) { - args.Price =+ GetResearchPointValue(uid, component) * component.PriceMultiplier; + args.Price += (GetResearchPointValue(uid, component) + component.ConsumedPoints) * component.PriceMultiplier; } ///