打开这个文件,然后再给sov.lua里面原先的给覆写
文件位置\tfh\script\country。sov.lua
找到原先的
function P.Build_Infrastructure(ic, voProductionData)
if voProductionData.Year <= 1942 then
return ic, false
end
return ic, true
end
覆写的
function P.Build_Infrastructure(ic,voProductionData)
return ic, true
end


文件位置\tfh\script\country。sov.lua
找到原先的
function P.Build_Infrastructure(ic, voProductionData)
if voProductionData.Year <= 1942 then
return ic, false
end
return ic, true
end
覆写的
function P.Build_Infrastructure(ic,voProductionData)
return ic, true
end

