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

Fix the alchemists quest, again

THe slave combatant in the ring of blood has got a higher level of relentless strikes and a second regen infusion
Fixed Kryl Feijan


git-svn-id: http://svn.net-core.org/repos/t-engine4@3133 51575b47-30f0-44d4-a5cc-537603b46e54
parent f2a54e14
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ end
--called in the on_die functions of ingredient-dropping monsters to determine if they should really drop their ingredient
need_part = function(self, player, ingredient, monster)
if self:isEnded() then return end
if not player or game.party:hasMember(player) then return end
if not player or not game.party:hasMember(player) then return end
local list = self.needed_ingredients
local needed = false
local ing_list = mod.class.Object:loadList("/data/general/objects/elixir-ingredients.lua")
......
......@@ -106,7 +106,7 @@ return {
if not game.player:isQuestStatus("kryl-feijan-escape", engine.Quest.FAILED) then
game.player:setQuestStatus("kryl-feijan-escape", engine.Quest.DONE)
world:gainAchievemnt("MELINDA_SAVED", game.player)
world:gainAchievement("MELINDA_SAVED", game.player)
end
end,
......
......@@ -116,14 +116,14 @@ newEntity{ define_as = "PLAYER_SLAVE",
[Talents.T_RUSHING_STRIKE] = 1,
[Talents.T_STRIKING_STANCE] = 1,
[Talents.T_UPPERCUT] = 3,
[Talents.T_RELENTLESS_STRIKES] = 1,
[Talents.T_RELENTLESS_STRIKES] = 3,
[Talents.T_CLINCH] = 2,
[Talents.T_MAIM] = 2,
[Talents.T_UNARMED_MASTERY] = 4,
[Talents.T_WEAPON_COMBAT] = 4,
},
resolvers.inscriptions(1, {"regeneration infusion"}),
resolvers.inscriptions(2, {"regeneration infusion","regeneration infusion"}),
autolevel = "warrior",
......
......@@ -1246,7 +1246,7 @@ static int map_to_screen(lua_State *L)
glDisable(GL_DEPTH_TEST);
// if (always_show && map->seen_changed)
if (always_show && map->seen_changed)
if (always_show)
{
map_update_seen_texture(map);
map->seen_changed = FALSE;
......
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