Skip to content

Commit

Permalink
Lua: Fixes condition for qm1 in the Stars of Ifrit quest
Browse files Browse the repository at this point in the history
  • Loading branch information
LoxleyXI committed Nov 4, 2024
1 parent 7420bb6 commit 61c3332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/zones/San_dOria-Jeuno_Airship/Zone.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ zoneObject.onGameHour = function(zone)

if
IsMoonFull() and
vanadielHour >= 18 and
vanadielHour < 6
(vanadielHour >= 18 or
vanadielHour < 6)
then
qmObj:setStatus(xi.status.NORMAL)
else
Expand Down

0 comments on commit 61c3332

Please sign in to comment.