DarkstarProject / darkstar

DEPRECATED - FFXI Server Emulator - See Project Topaz

Home Page:https://github.com/project-topaz/topaz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CoP 5-2 broken in BCNM Lua

DanteMccloud opened this issue · comments

Scripts/globals/bcnm.lua

Line missing or statement

it is currently
[ 864] = function() return ( player:hasCompletedMission(COP, dsp.mission.id.cop.DESIRES_OF_EMPTINESS) (cop == dsp.mission.id.cop.DESIRES_OF_EMPTINESS and copStat > 8)

and should be
[ 864] = function() return ( player:hasCompletedMission(COP, dsp.mission.id.cop.DESIRES_OF_EMPTINESS) or (cop == dsp.mission.id.cop.DESIRES_OF_EMPTINESS and copStat > 8)

Fix in PR #6134