diff --git a/EXILED/Exiled.API/Features/Roles/Scp939Role.cs b/EXILED/Exiled.API/Features/Roles/Scp939Role.cs
index 42799d47a1..5ff399080a 100644
--- a/EXILED/Exiled.API/Features/Roles/Scp939Role.cs
+++ b/EXILED/Exiled.API/Features/Roles/Scp939Role.cs
@@ -10,7 +10,6 @@ namespace Exiled.API.Features.Roles
using System.Collections.Generic;
using Exiled.API.Enums;
- using Exiled.API.Features.Pools;
using PlayerRoles;
using PlayerRoles.PlayableScps;
@@ -85,11 +84,6 @@ internal Scp939Role(Scp939GameRole baseRole)
MimicPointController = EnvironmentalMimicry._mimicPoint;
}
- ///
- /// Finalizes an instance of the class.
- ///
- ~Scp939Role() => ListPool.Pool.Return(VisiblePlayers);
-
///
public override RoleTypeId Type { get; } = RoleTypeId.Scp939;
@@ -236,11 +230,6 @@ public float MimicryCooldown
///
public Vector3? MimicryPointPosition => MimicPointController.Active ? MimicPointController.MimicPointTransform.position : null;
- ///
- /// Gets a list of players this SCP-939 instance can see regardless of their movement.
- ///
- public List VisiblePlayers { get; } = ListPool.Pool.Get();
-
///
/// Gets the instance.
///