From 9cebbe7f7a75643b158915047f637ac1314d1dd6 Mon Sep 17 00:00:00 2001 From: Allanis Date: Sat, 6 Apr 2013 14:58:15 +0100 Subject: [PATCH] [Change] Randomised mission names a bit. --- dat/missions/cargo.lua | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dat/missions/cargo.lua b/dat/missions/cargo.lua index 2b8e436..8dbc9dd 100644 --- a/dat/missions/cargo.lua +++ b/dat/missions/cargo.lua @@ -12,8 +12,17 @@ function create() end -- Missions generic. - misn_type = "Rush" - misn.setTitle("Rush Delivery to " .. planet) + misn_type = "Cargo" + i = rnd.int(0, 3) + if i == 0 then + misn.setTitle("Cargo Delivery to " .. planet) + elseif i == 1 then + misn.setTitle("Freight delivery to " .. planet) + elseif i == 2 then + misn.setTitle("Transport to " .. planet) + elseif i == 3 then + misn.setTitle("Delivery to " .. planet) + end -- More mission specifics. carg_mass = rnd.int(10, 30)