Revert "Fix bug with pipe color" (#39135)

This commit is contained in:
ArtisticRoomba
2025-08-04 13:10:54 -07:00
committed by GitHub
parent f6737d4a57
commit e996fb62f1
7 changed files with 59 additions and 105 deletions

View File

@@ -1,5 +1,5 @@
using Content.Shared.Atmos.Components;
using Content.Shared.Atmos.EntitySystems;
using Content.Server.Atmos.Piping.Components;
using Content.Server.Atmos.Piping.EntitySystems;
using Content.Server.Charges;
using Content.Server.Decals;
using Content.Server.Destructible;
@@ -147,7 +147,7 @@ public sealed class SprayPainterSystem : SharedSprayPainterSystem
return;
Audio.PlayPvs(ent.Comp.SpraySound, ent);
_pipeColor.SetColor((target, color), args.Color);
_pipeColor.SetColor(target, color, args.Color);
args.Handled = true;
}