diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index 3304330acabcfd..cd4e2edaecae8d 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Random; using Content.Shared.Verbs; +using Robust.Shared.Utility; namespace Content.Server.Forensics { @@ -125,7 +126,7 @@ private void OnUtilityVerb(Entity entity, ref GetVerbs var verb = new UtilityVerb() { Act = () => TryStartCleaning(entity, user, target), - IconEntity = GetNetEntity(entity), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/bubbles.svg.192dpi.png")), Text = Loc.GetString(Loc.GetString("forensics-verb-text")), Message = Loc.GetString(Loc.GetString("forensics-verb-message")), // This is important because if its true using the cleaning device will count as touching the object. diff --git a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt index 0b8ae856bd8232..5b1320b450a8b6 100644 --- a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt +++ b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt @@ -7,3 +7,6 @@ https://game-icons.net/1x1/lorc/padlock.html unlock.svg by Delapouite under CC BY 3.0 https://game-icons.net/1x1/delapouite/padlock-open.html + +bubbles.svg by Lorc under CC BY 3.0 +https://game-icons.net/1x1/lorc/bubbles.html \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/bubbles.svg b/Resources/Textures/Interface/VerbIcons/bubbles.svg new file mode 100644 index 00000000000000..8744443c2c84b0 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/bubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/VerbIcons/bubbles.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/bubbles.svg.192dpi.png new file mode 100644 index 00000000000000..87badd270b2d0a Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/bubbles.svg.192dpi.png differ