Skip to content

Commit

Permalink
emergency fix for merge, triangles are back baybee and steelclaw fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV committed Mar 30, 2024
1 parent 50fd701 commit 9950500
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
5 changes: 3 additions & 2 deletions BossMod/BossModule/AOEShapes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,9 @@ private IEnumerable<WPos> ContourPoints(WPos origin, Angle rotation, float offse
yield return origin + dx1 + dy2;
}
}

public class AOEShapeTriangle : AOEShape
{
{
public float SideLength;
public Angle DirectionOffset;

Expand Down Expand Up @@ -287,4 +288,4 @@ public override Func<WPos, float> Distance(WPos origin, Angle rotation)
return (p1, p2, p3);
}
}
}

1 change: 0 additions & 1 deletion BossMod/BossModule/ArenaBounds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,3 @@ public override WDir ClampToBounds(WDir offset, float scale = 1)
return new WDir(0, 0); // Placeholder to indicate that clamping logic is needed
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// CONTRIB: made by legendoficeman, changes by Malediktus
using System.Collections.Generic;
using System.Linq;
using BossMod;

namespace BossMod.Endwalker.DeepDungeons.EurekaOrthos.Floors61to70.DD30Aeturna
{
Expand Down Expand Up @@ -40,12 +39,9 @@ public enum TetherID : uint
FerocityTetherStretch = 57, // Boss->player
};

class SteelClaw : Components.SingleTargetCast
class SteelClaw : Components.SingleTargetDelayableCast
{
public SteelClaw() : base(ActionID.MakeSpell(AID.SteelClaw))
{
EndsOnCastEvent = true;
}
public SteelClaw() : base(ActionID.MakeSpell(AID.SteelClaw)) { }
}

class FerocityGood : Components.BaitAwayTethers //TODO: consider generalizing stretched tethers?
Expand Down

0 comments on commit 9950500

Please sign in to comment.