diff --git a/SplatoonScripts/Duties/Dawntrail/R1S Raining Cats.cs b/SplatoonScripts/Duties/Dawntrail/R1S Raining Cats.cs index 0d03318e..3ac565d1 100644 --- a/SplatoonScripts/Duties/Dawntrail/R1S Raining Cats.cs +++ b/SplatoonScripts/Duties/Dawntrail/R1S Raining Cats.cs @@ -17,7 +17,7 @@ public unsafe class R1S_Raining_Cats : SplatoonScript private readonly List TetheredPlayers = new(2); public override HashSet? ValidTerritories { get; } = new() { 1226 }; - public override Metadata Metadata => new(1, "Garume"); + public override Metadata Metadata => new(2, "Garume"); private IBattleNpc? BlackCat => Svc.Objects.OfType() .FirstOrDefault(x => x is { IsTargetable: true, NameId: BlackCatNameId }); @@ -56,7 +56,7 @@ public override void OnUpdate() var players = Svc.Objects .OfType() - .Where(x => !TetheredPlayers.Contains(x) && !x.IsDead) + .Where(x => !x.IsDead) .OrderBy(x => Vector3.Distance(x.Position, BlackCat.Position)) .ToList();