diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 74ba6d6d5b..637d64d9a8 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -74,9 +74,8 @@ public sealed partial class ArtifactSystem : EntitySystem var sumValue = component.NodeTree.Sum(n => GetNodePointValue(n, component, getMaxPrice)); var fullyExploredBonus = component.NodeTree.All(x => x.Triggered) || getMaxPrice ? 1.25f : 1; - sumValue -= component.ConsumedPoints; - return (int) (sumValue * fullyExploredBonus); + return (int) (sumValue * fullyExploredBonus) - component.ConsumedPoints; } ///