Skip to content

Commit

Permalink
Fix alliances in cam3-c mission because of ddce7a5.
Browse files Browse the repository at this point in the history
This mission did not explicitly grant alliances. Overlooked because prior to the mentioned commit
alliances persisted across missions.
  • Loading branch information
KJeff01 committed Feb 1, 2018
1 parent 6a6ce74 commit a6280cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data/base/script/campaign/cam3-c.js
Expand Up @@ -80,7 +80,7 @@ function discoverGammaBase()
playSound("pcv616.ogg"); //Group rescued.

camAbsorbPlayer(GAMMA, CAM_HUMAN_PLAYER); //Take everything they got!
setAlliance(GAMMA, NEXUS, false); //Probably don't need this.
setAlliance(NEXUS, GAMMA, false);

hackRemoveMessage("CM3C_GAMMABASE", PROX_MSG, CAM_HUMAN_PLAYER);
hackRemoveMessage("CM3C_BETATEAM", PROX_MSG, CAM_HUMAN_PLAYER);
Expand Down Expand Up @@ -142,6 +142,9 @@ function eventStartLevel()
hackAddMessage("CM3C_GAMMABASE", PROX_MSG, CAM_HUMAN_PLAYER, true);
hackAddMessage("CM3C_BETATEAM", PROX_MSG, CAM_HUMAN_PLAYER, true);

setAlliance(CAM_HUMAN_PLAYER, GAMMA, true);
setAlliance(NEXUS, GAMMA, true);

camSetArtifacts({
"NXbase1HeavyFacArti": { tech: "R-Vehicle-Body07" }, //retribution
"NXcybFacArti": { tech: "R-Wpn-RailGun01" },
Expand Down

0 comments on commit a6280cf

Please sign in to comment.