Skip to content

Commit

Permalink
Merge pull request #5665 from ampitere/fix_shattering_stars_restricts…
Browse files Browse the repository at this point in the history
…_subjob

[LUA] Fix Shattering Stars BCNMs should restrict subjob
  • Loading branch information
claywar committed May 11, 2024
2 parents fbe32b7 + d38dd82 commit 25ce923
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions scripts/battlefields/Balgas_Dais/shattering_stars_mnk.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_MNK,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 5,
entryNpc = 'BC_Entrance',
Expand Down
1 change: 1 addition & 0 deletions scripts/battlefields/Balgas_Dais/shattering_stars_smn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_SMN,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 7,
entryNpc = 'BC_Entrance',
Expand Down
1 change: 1 addition & 0 deletions scripts/battlefields/Balgas_Dais/shattering_stars_whm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_WHM,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 6,
entryNpc = 'BC_Entrance',
Expand Down
3 changes: 2 additions & 1 deletion scripts/battlefields/Horlais_Peak/shattering_stars_blm.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Horlais Peak
-- Name: Shattering stars - Maat Fight (BLM)
-----------------------------------
local horlaisID = zones[xi.zone.HORLAIS_PEAK]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_BLM,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 6,
entryNpc = 'BC_Entrance',
Expand Down
3 changes: 2 additions & 1 deletion scripts/battlefields/Horlais_Peak/shattering_stars_rng.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Horlais Peak
-- Name: Shattering stars - Maat Fight (RNG)
-----------------------------------
local horlaisID = zones[xi.zone.HORLAIS_PEAK]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_RNG,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 7,
entryNpc = 'BC_Entrance',
Expand Down
3 changes: 2 additions & 1 deletion scripts/battlefields/Horlais_Peak/shattering_stars_war.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Horlais Peak
-- Name: Shattering stars - Maat Fight (WAR)
-----------------------------------
local horlaisID = zones[xi.zone.HORLAIS_PEAK]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_WAR,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 5,
entryNpc = 'BC_Entrance',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Waughroon Shrine
-- Name: Shattering stars - Maat Fight (BST)
-----------------------------------
local waughroonID = zones[xi.zone.WAUGHROON_SHRINE]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_BST,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 8,
entryNpc = 'BC_Entrance',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Waughroon Shrine
-- Name: Shattering stars - Maat Fight (RDM)
-----------------------------------
local waughroonID = zones[xi.zone.WAUGHROON_SHRINE]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_RDM,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 6,
entryNpc = 'BC_Entrance',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------
-- Area: Balga's Dais
-- Area: Waughroon Shrine
-- Name: Shattering stars - Maat Fight (THF)
-----------------------------------
local waughroonID = zones[xi.zone.WAUGHROON_SHRINE]
Expand All @@ -10,6 +10,7 @@ local content = Battlefield:new({
battlefieldId = xi.battlefield.id.SHATTERING_STARS_THF,
maxPlayers = 1,
levelCap = 99,
allowSubjob = false,
timeLimit = utils.minutes(10),
index = 7,
entryNpc = 'BC_Entrance',
Expand Down

0 comments on commit 25ce923

Please sign in to comment.