From 5069863d6fdf5bafd1fc0addbe3ba146cbc2cfa6 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 11 Jan 2025 10:43:55 +0000 Subject: [PATCH] fix shocked door spraypaint error (#2700) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Client/Doors/DoorSystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs index bc52730b0e..dc53fcbb03 100644 --- a/Content.Client/Doors/DoorSystem.cs +++ b/Content.Client/Doors/DoorSystem.cs @@ -81,10 +81,12 @@ public sealed class DoorSystem : SharedDoorSystem { Log.Error("Unable to load RSI '{0}'. Trace:\n{1}", baseRsi, Environment.StackTrace); } + args.Sprite.BaseRSI = res?.RSI; // DeltaV + /* DeltaV: just set BaseRSI instead foreach (var layer in args.Sprite.AllLayers) { layer.Rsi = res?.RSI; - } + }*/ } TryComp(uid, out var animPlayer);