Skip to content

Commit

Permalink
Update script
Browse files Browse the repository at this point in the history
  • Loading branch information
Limiana committed Dec 26, 2024
1 parent b974dcb commit 7fc15fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace SplatoonScriptsOfficial.Duties.Dawntrail.The_Futures_Rewritten;
public unsafe class P5_Fulgent_Blade_Dodge : SplatoonScript
{
public override HashSet<uint>? ValidTerritories => [1238];
public override Metadata? Metadata => new(1, "NightmareXIV");
public override Metadata? Metadata => new(2, "NightmareXIV");

long MechanicStartTime = 0;
long Phase => Environment.TickCount64 - MechanicStartTime;
Expand Down Expand Up @@ -86,7 +86,7 @@ public override void OnStartingCast(uint source, uint castId)
public override void OnUpdate()
{
Controller.GetRegisteredElements()
.Where(x => !x.Key.StartsWith("Ref"))
//.Where(x => !x.Key.StartsWith("Ref"))
.Each(x => x.Value.Enabled = false);
var npcs = Npcs;
if(Phase > 30000)
Expand Down

0 comments on commit 7fc15fb

Please sign in to comment.