Фиксы (#439)

* - fix: Ebow.

* - fix: Cult deconversion.

* - add: Bola update.

* - fix: Error.

* - fix: Holoprojectors.

* - fix: Clumsy.
This commit is contained in:
Aviu00
2024-07-14 12:27:20 +00:00
committed by GitHub
parent e56340dd39
commit 9950864b8b
14 changed files with 104 additions and 80 deletions

View File

@@ -5,6 +5,7 @@ using Content.Shared.Interaction;
using Content.Shared.Interaction.Events;
using Content.Shared.Popups;
using Content.Shared.Storage;
using Robust.Shared.Utility;
namespace Content.Server.Holosign;
@@ -42,7 +43,7 @@ public sealed class HolosignSystem : EntitySystem
private void OnUse(EntityUid uid, HolosignProjectorComponent comp, UseInHandEvent args)
{
foreach (var sign in comp.Signs)
foreach (var sign in comp.Signs.ShallowClone())
{
comp.Signs.Remove(sign);
QueueDel(sign);
@@ -97,4 +98,4 @@ public sealed class HolosignSystem : EntitySystem
{
return component.Signs.Count; // wd edit
}
}
}