Skip to content

Commit

Permalink
Clan Skyre Short Campaign Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BoyNamedHsu authored May 10, 2021
1 parent 78757ad commit 19b1025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/script/campaign/mod/vco2_main_listeners.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ function vco_check_skaven_clan_eshin_clans_reputation(faction)
end

function vco_check_skaven_clan_skyre_workshop()
if current_workshop_lvl == 2 then
if current_workshop_lvl >= 2 then
cm:set_scripted_mission_text("wh_main_short_victory", "get_forbidden_workshop_level_3", "mission_text_text_vco2_main_clan_skyre_workshop_lvl_3_2");
cm:set_scripted_mission_text("wh_main_long_victory", "get_forbidden_workshop_level_3", "mission_text_text_vco2_main_clan_skyre_workshop_lvl_3_2");
cm:set_scripted_mission_text("wh_main_short_victory", "get_forbidden_workshop_level_4", "mission_text_text_vco2_main_clan_skyre_workshop_lvl_4_2");
cm:set_scripted_mission_text("wh_main_long_victory", "get_forbidden_workshop_level_4", "mission_text_text_vco2_main_clan_skyre_workshop_lvl_4_2");
end

if current_workshop_lvl == 3 then
if current_workshop_lvl >= 3 then
cm:complete_scripted_mission_objective("wh_main_short_victory", "get_forbidden_workshop_level_3", true);
cm:complete_scripted_mission_objective("wh_main_long_victory", "get_forbidden_workshop_level_3", true);
cm:set_scripted_mission_text("wh_main_short_victory", "get_forbidden_workshop_level_3", "mission_text_text_vco2_main_clan_skyre_workshop_lvl_3");
Expand Down

0 comments on commit 19b1025

Please sign in to comment.