Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Wrong path for source linking #257

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BasicRotations/Healer/AST_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Healer/AST_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Healer/AST_Default.cs")]
[Api(4)]
public sealed class AST_Default : AstrologianRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Healer/SCH_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Healer/SCH_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Healer/SCH_Default.cs")]
[Api(4)]
public sealed class SCH_Default : ScholarRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Healer/SGE_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Healer/SGE_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Healer/SGE_Default.cs")]
[Api(4)]
public sealed class SGE_Default : SageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Healer/WHM_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Healer/WHM_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Healer/WHM_Default.cs")]
[Api(4)]
public sealed class WHM_Default : WhiteMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Limited Jobs/BLU_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("DOES NOT WORK", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Limited Jobs/BLU_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Limited Jobs/BLU_Default.cs")]
[Api(4)]
public sealed class Blue_Default : BlueMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Limited Jobs/BSM_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//namespace DefaultRotations.Ranged;

//[Rotation("Default", CombatType.PvE, GameVersion = "7.0")]
//[SourceCode(Path = "main/DefaultRotations/Limited Jobs/BSM_Default.cs")]
//[SourceCode(Path = "main/BasicRotations/Limited Jobs/BSM_Default.cs")]
//[Api(1)]
//public sealed class BSM_Default : BeastmasterRotation
//{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/BLM_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.01")]
[SourceCode(Path = "main/DefaultRotations/Magical/BLM_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/BLM_Default.cs")]
[Api(4)]
public class BLM_Default : BlackMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/ICWA_PCT_BETA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace DefaultRotations.Magical;

[Rotation("IcWa PCT BETA", CombatType.PvE, GameVersion = "7.05", Description = "Kindly created and donated by Rabbs and further update made by IcWa")]
[SourceCode(Path = "main/DefaultRotations/Magical/ICWA_PCT_BETA.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/ICWA_PCT_BETA.cs")]
[Api(4)]
public sealed class IcWaPctBeta : PictomancerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/PCT_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Magical/PCT_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/PCT_Default.cs")]
[Api(4)]
public sealed class PCT_Default : PictomancerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/RDM_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Magical/RDM_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/RDM_Default.cs")]
[Api(4)]
public sealed class RDM_Default : RedMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/SMN_Archive
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using System.ComponentModel;
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.00")]
[SourceCode(Path = "main/DefaultRotations/Magical/SMN_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/SMN_Default.cs")]
[Api(3)]
public sealed class SMN_Default : SummonerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Magical/SMN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Magical/SMN_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Magical/SMN_Default.cs")]
[Api(4)]
public sealed class SMN_Default : SummonerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/DRG_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Melee/DRG_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/DRG_Default.cs")]
[Api(4)]

public sealed class DRG_Default : DragoonRotation
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/MNK_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.00", Description = "Uses Lunar Solar Opener from The Balance")]
[SourceCode(Path = "main/DefaultRotations/Melee/MNK_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/MNK_Default.cs")]
[Api(4)]

public sealed class MNK_Default : MonkRotation
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/NIN_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Melee/NIN_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/NIN_Default.cs")]
[Api(4)]

public sealed class NIN_Default : NinjaRotation
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/RPR_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.01", Description = "")]
[SourceCode(Path = "main/DefaultRotations/Melee/RPR_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/RPR_Default.cs")]
[Api(4)]
public sealed class RPR_Default : ReaperRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/SAM_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Melee/SAM_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/SAM_Default.cs")]
[Api(4)]
public sealed class SAM_Default : SamuraiRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Melee/VPR_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Melee/VPR_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Melee/VPR_Default.cs")]
[Api(4)]
public sealed class VPR_Default : ViperRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Healer/AST_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Healer/AST_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Healer/AST_Default.PVP.cs")]
[Api(4)]
public class AST_DefaultPVP : AstrologianRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Healer/SCH_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Healer/SCH_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Healer/SCH_Default.PVP.cs")]
[Api(4)]
public class SCH_DefaultPVP : ScholarRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Healer/SGE_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Healer/SGE_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Healer/SGE_Default.PVP.cs")]
[Api(4)]
public class SGE_DefaultPVP : SageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Healer/WHM_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Healer;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Healer/WHM_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Healer/WHM_Default.PVP.cs")]
[Api(4)]
public class WHM_DefaultPVP : WhiteMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Magical/BLM_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Magical/BLM_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Magical/BLM_Default.PVP.cs")]
[Api(4)]
public class BLM_DefaultPVP : BlackMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Magical/RDM_Default.PvP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Magical/RDM_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Magical/RDM_Default.PVP.cs")]
[Api(4)]
public class RDM_DefaultPvP : RedMageRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Magical/SMN_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Magical;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Magical/SMN_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Magical/SMN_Default.PVP.cs")]
[Api(4)]
public class SMN_DefaultPvP : SummonerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/DRG_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/DRG_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/DRG_Default.PvP.cs")]
[Api(4)]
public sealed class DRG_DefaultPvP : DragoonRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/MNK_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Melee/MNK_Default.PVP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Melee/MNK_Default.PVP.cs")]
[Api(4)]
public sealed class MNK_DefaultPvP : MonkRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/NIN_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/NIN_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/NIN_Default.PvP.cs")]
[Api(4)]
public sealed class NIN_DefaultPvP : NinjaRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/RPR_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/RPR_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/RPR_Default.PvP.cs")]
[Api(4)]
public sealed class RPR_DefaultPvP : ReaperRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/SAM_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/SAM_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/SAM_Default.PvP.cs")]
[Api(4)]
public sealed class SAM_DefaultPvP : SamuraiRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Melee/VPR_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Melee;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.05", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/VPR_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/VPR_Default.PvP.cs")]
[Api(4)]
public sealed class VPR_DefaultPvP : ViperRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Ranged/BRD_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.05", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Ranged/BRD_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Ranged/BRD_Default.PvP.cs")]
[Api(4)]
public sealed class BRD_DefaultPvP : BardRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Ranged/DNC_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Ranged/DNC_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Ranged/DNC_Default.PvP.cs")]
[Api(4)]
public sealed class DNC_DefaultPvP : DancerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Ranged/MCH_Default.PvP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Ranged/MCH_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Ranged/MCH_Default.PvP.cs")]
[Api(4)]
public sealed class MCH_DefaultPvP : MachinistRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Tank/DRK_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Tank;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/DRK_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/DRK_Default.PvP.cs")]
[Api(4)]
public sealed class DRK_DefaultPvP : DarkKnightRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Tank/GNB_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Tank;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/GNB_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/GNB_Default.PvP.cs")]
[Api(4)]
public sealed class GNB_DefaultPvP : GunbreakerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Tank/PLD_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Tank;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/PLD_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/PLD_Default.PvP.cs")]
[Api(4)]
public sealed class PLD_DefaultPvP : PaladinRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/PVPRotations/Tank/WAR_Default.PVP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Tank;

[Rotation("Default PVP", CombatType.PvP, GameVersion = "7.00", Description = "Beta Rotation")]
[SourceCode(Path = "main/DefaultRotations/PVPRotations/Tank/WAR_Default.PvP.cs")]
[SourceCode(Path = "main/BasicRotations/PVPRotations/Tank/WAR_Default.PvP.cs")]
[Api(4)]
public sealed class WAR_DefaultPvP : WarriorRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/BRD_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace DefaultRotations.Ranged;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05",
Description = "Please make sure that the three song times add up to 120 seconds, Wanderers default first song for now.")]
[SourceCode(Path = "main/DefaultRotations/Ranged/BRD_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Ranged/BRD_Default.cs")]
[Api(4)]
public sealed class BRD_Default : BardRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/DNC_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05", Description = "")]
[SourceCode(Path = "main/DefaultRotations/Ranged/DNC_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Ranged/DNC_Default.cs")]
[Api(4)]
public sealed class DNC_Default : DancerRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/MCH_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Ranged/MCH_Default.cs")]
[SourceCode(Path = "main/BasicRotations/Ranged/MCH_Default.cs")]
[Api(4)]
public sealed class MCH_Default : MachinistRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/zMCH_Beta.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("zMCH Beta", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Ranged/zMCH_Beta.cs")]
[SourceCode(Path = "main/BasicRotations/Ranged/zMCH_Beta.cs")]
[Api(4)]
public sealed class zMCH_Beta : MachinistRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/zMCH_Beta_2.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Ranged;

[Rotation("zMCH Beta 2", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Ranged/zMCH_Beta_2.cs")]
[SourceCode(Path = "main/BasicRotations/Ranged/zMCH_Beta_2.cs")]
[Api(4)]
public sealed class zMCH_Beta_2 : MachinistRotation
{
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/Tank/DRK_Default.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace DefaultRotations.Tank;

[Rotation("Default", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Tank/DRK_Balance.cs")]
[SourceCode(Path = "main/BasicRotations/Tank/DRK_Balance.cs")]
[Api(4)]
public sealed class DRK_Default : DarkKnightRotation
{
Expand Down
Loading