Sid Meier's Civilization VI

Sid Meier's Civilization VI

Zugaikotsu's Fast Forward AI Turns -- Options Extension
Αυτό το θέμα έχει κλειδωθεί
Switching speed bug fix
It looks like I fixed bug from the comments by forsing game to slow mode at the beginning of every player turn. For the time being it works fine on my game.

To do this you need to find file "Zug_FastForwardAI_GP.lua" (in the same folder as the settings file), then inside file replace this text:


function SetQuickAction (playerID, blsFirstTime)
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == false and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (true, true);
end

end

with this:


function SetQuickAction (playerID, blsFirstTime)
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == false and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (true, true);
end
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == true and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (false, false);
end
end

I hope this will be useful for author and players))
< >
Εμφάνιση 1-3 από 3 σχόλια
I will try it and come back after a few months of using it to verify if it helps or causes problems. Thank you very much!
Zugaikotsu  [δημιουργός] 19 Απρ 2022, 20:31 
I missed this post earlier, apologies for the late response.
Thanks for the feedback. I will play with it within the next few weeks and if no regression, will push it back to the main code base. If anyone else has tried, please let me know your results.
Zugaikotsu  [δημιουργός] 24 Μαϊ 2022, 20:57 
The change was pushed into the core code. Locking topic.
< >
Εμφάνιση 1-3 από 3 σχόλια
Ανά σελίδα: 1530 50