Skip to content

Commit

Permalink
Fix Classic template for Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
KJeff01 authored and past-due committed Mar 19, 2024
1 parent b270745 commit a79f231
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/base/script/campaign/cam2-5.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function eventStartLevel()
repair: 20,
count: -1,
},
templates: (!camClassicMode()) ? [cTempl.commrp, cTempl.comatt, cTempl.comhpv] : [cTempl.comct, cTempl.comatt, cTempl.comhpv]
templates: (!camClassicMode()) ? [cTempl.commrp, cTempl.comatt, cTempl.comhpv] : [cTempl.commc, cTempl.comatt, cTempl.comhpv]
},
"COCyborgFactoryL": {
assembly: "COCyborgFactoryLAssembly",
Expand Down
4 changes: 2 additions & 2 deletions data/base/script/campaign/cam2-a.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function getDroidsForCOLZ()
}
else
{
templates = (!camClassicMode()) ? [cTempl.cohct, cTempl.commrl, cTempl.comorb] : [cTempl.cohct, cTempl.comct, cTempl.comorb];
templates = (!camClassicMode()) ? [cTempl.cohct, cTempl.commrl, cTempl.comorb] : [cTempl.cohct, cTempl.commc, cTempl.comorb];
usingHeavy = true;
}

Expand Down Expand Up @@ -139,7 +139,7 @@ function sendPlayerTransporter()
function mapEdgeDroids()
{
const TANK_NUM = 8 + camRand(6);
const list = (!camClassicMode()) ? [cTempl.npcybm, cTempl.npcybr, cTempl.commrp, cTempl.cohct] : [cTempl.npcybm, cTempl.npcybr, cTempl.comct, cTempl.cohct];
const list = (!camClassicMode()) ? [cTempl.npcybm, cTempl.npcybr, cTempl.commrp, cTempl.cohct] : [cTempl.npcybm, cTempl.npcybr, cTempl.commc, cTempl.cohct];

const droids = [];
for (let i = 0; i < TANK_NUM; ++i)
Expand Down
4 changes: 2 additions & 2 deletions data/base/script/campaign/cam2-b.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function eventStartLevel()
repair: 30,
count: -1,
},
templates: (!camClassicMode()) ? [cTempl.comatt, cTempl.cohct, cTempl.commrp] : [cTempl.comatt, cTempl.cohct, cTempl.comct]
templates: (!camClassicMode()) ? [cTempl.comatt, cTempl.cohct, cTempl.commrp] : [cTempl.comatt, cTempl.cohct, cTempl.commc]
},
"COHeavyFacR-b1": {
assembly: "COHeavyFacR-b1Assembly",
Expand All @@ -254,7 +254,7 @@ function eventStartLevel()
repair: 30,
count: -1,
},
templates: (!camClassicMode()) ? [cTempl.comatt, cTempl.cohct, cTempl.commrp] : [cTempl.comatt, cTempl.cohct, cTempl.comct]
templates: (!camClassicMode()) ? [cTempl.comatt, cTempl.cohct, cTempl.commrp] : [cTempl.comatt, cTempl.cohct, cTempl.commc]
},
"COCybFacL-b2": {
assembly: "COCybFacL-b2Assembly",
Expand Down

0 comments on commit a79f231

Please sign in to comment.