dfhack/scripts/growthbug.lua

27 lines
982 B
Lua

--growthbug: units only grow when the current tick is 0 mod 10, so only 1/10 units will grow naturally. this script periodically sets the birth time of each unit so that it will grow
--to run periodically, use "repeat enable 2 months growthBug now". see repeat.lua for details
-- author expwnent
local args = {...}
if args[1] ~= nil then
print("growthbug usage")
print(" growthbug")
print(" fix the growth bug for all units on the map")
print(" growthbug help")
print(" print this help message")
print(" repeat enable [n] [years/months/ticks/days/etc] growthbug")
print(" run this script every n time units")
print(" repeat disable growthbug")
print(" stop automatically running this script")
end
local count = 0
for _,unit in ipairs(df.world.units.all) do
local offset = unit.relations.birth_time % 10;
if offset ~= 0 then
count = count+1
unit.relations.birth_time = unit.relations.birth_time - offset
end
end
print("Fixed growth bug for "..count.." units.")