From 8310a2df31aaa273a2115e0ef6d49a184f7940d5 Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Wed, 24 May 2023 01:52:32 +0200 Subject: [PATCH] Fix artifacts being worth 0 spacebucks (#16749) --- Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } ///