Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamYG committed Apr 25, 2019
1 parent e27ca48 commit 0fb21ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/Campaign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class Campaign {
console.group("getCampaignRunParams");
const entryPoint = (campaign.entryPoint)?campaign.entryPoint:campaign.maps[0].destination;
const entryPointPath = path.join(Campaign.getCampaignsInstallDir(),entryPoint)
const params = Config.getRunParams().map(e=>e.replace("{map}",entryPointPath);)
const params = Config.getRunParams().map(e=>e.replace("{map}",entryPointPath))

console.log("params", params)
console.groupEnd();
Expand Down

0 comments on commit 0fb21ba

Please sign in to comment.