diff --git a/dat/missions/cargo.lua b/dat/missions/cargo.lua index 680ba67..2bf24b3 100644 --- a/dat/missions/cargo.lua +++ b/dat/missions/cargo.lua @@ -29,7 +29,7 @@ function create() planet = space.getPlanet(misn.factions()) i = i + 1 until planet ~= space.landName() or i > 10 - -- Protect agains inf loop. + -- Protect against inf loop. if i > 10 then misn.finish(false) end @@ -51,7 +51,7 @@ function create() elseif i < 10 then carg_type = "Industrial Goods" elseif i < 12 then - carg_type = "Luxary Goods" + carg_type = "Luxury Goods" else carg_type = "Medicine" end diff --git a/dat/missions/es_cargo.lua b/dat/missions/es_cargo.lua index 0775c05..fcef080 100644 --- a/dat/missions/es_cargo.lua +++ b/dat/missions/es_cargo.lua @@ -50,7 +50,7 @@ function create() elseif i < 10 then carg_type = "Industrial Goods" elseif i < 12 then - carg_type = "Luxary Goods" + carg_type = "Luxury Goods" else carg_type = "Medicine" end diff --git a/scripts/ai/merchant.lua b/scripts/ai/merchant.lua index b60e2bd..08ff373 100644 --- a/scripts/ai/merchant.lua +++ b/scripts/ai/merchant.lua @@ -51,7 +51,7 @@ function create() elseif num < 10 then cargo = "Industrial Goods" elseif num < 12 then - cargo = "Luxary Goods" + cargo = "Luxury Goods" else cargo = "Medicine" end