Skip to content

Commit

Permalink
fix: Chameleon Projector
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeZer2 committed Aug 2, 2024
1 parent 2deb8b6 commit e344e45
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Content.Client/Polymorph/Systems/ChameleonProjectorSystem.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
using Content.Client.Lock.Visualizers;
using Content.Client.Storage.Visualizers;
using Content.Client.Wires;
using Content.Shared.Chemistry.Components;
using Content.Shared.Polymorph.Components;
using Content.Shared.Polymorph.Systems;
using Content.Shared.VendingMachines;
using Robust.Client.GameObjects;

namespace Content.Client.Polymorph.Systems;
Expand All @@ -22,6 +26,13 @@ public override void Initialize()

private void OnHandleState(Entity<ChameleonDisguiseComponent> ent, ref AfterAutoHandleStateEvent args)
{
//ss220 cham fix start
CopyComp<EntityStorageVisualsComponent>(ent);
CopyComp<LockVisualsComponent>(ent);
CopyComp<WiresVisualsComponent>(ent);
CopyComp<VendingMachineComponent>(ent);
//ss220 cham fix end

CopyComp<SpriteComponent>(ent);
CopyComp<GenericVisualizerComponent>(ent);
CopyComp<SolutionContainerVisualsComponent>(ent);
Expand Down

0 comments on commit e344e45

Please sign in to comment.