Skip to content
Snippets Groups Projects
Commit a5412258 authored by dg's avatar dg
Browse files

Fixed when Fillarel is dies in the unremarkable cave

git-svn-id: http://svn.net-core.org/repos/t-engine4@4759 51575b47-30f0-44d4-a5cc-537603b46e54
parent 0d44baf3
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ local function attack_krogar(npc, player)
elseif e.define_as == "CORRUPTOR" and not e.dead then krogar = e end
end
krogar.faction = "enemies"
fillarel.inc_damage = {all=-80}
fillarel.inc_damage.all = -80
fillarel:setTarget(krogar)
krogar:setTarget(filarel)
game.player:setQuestStatus("strange-new-world", engine.Quest.COMPLETED, "sided-fillarel")
......@@ -37,7 +37,7 @@ local function attack_fillarel(npc, player)
elseif e.define_as == "CORRUPTOR" and not e.dead then krogar = e end
end
fillarel.faction = "enemies"
krogar.inc_damage = {all=-80}
krogar.inc_damage.all = -80
fillarel:setTarget(krogar)
krogar:setTarget(filarel)
game.player:setQuestStatus("strange-new-world", engine.Quest.COMPLETED, "sided-krogar")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment