14 lines
474 B
Lua
14 lines
474 B
Lua
-----------------------------------
|
|
-- Remove the Imprimatur/Fame gating from the SOA main mission line
|
|
-----------------------------------
|
|
require('modules/module_utils')
|
|
require('scripts/missions/soa/helpers')
|
|
-----------------------------------
|
|
local m = Module:new('soa_remove_imprimatur_gate')
|
|
|
|
m:addOverride('xi.soa.helpers.imprimaturGate', function(player, gateAmount)
|
|
-- Ignore the spending and fame requirements, just return true
|
|
return true
|
|
end)
|
|
|
|
return m
|