Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions auto-splitters/Sitting_Ducks/SittingDucks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ function startup()
-- print("patch val " .. readAddress("int", 0xC8A16))
end

-- This is broken for now, without this the timer jitters when load remover is in effect
-- function isLoading()
-- return current.loading
-- end
function isLoading()
if current.loading ~= 0 then
return true
end
end

function state()
old = shallow_copy_tbl(current)
Expand All @@ -79,6 +80,7 @@ function state()
current.duckTimeHours = readAddress("float", 0x1D6A80, 0x26D8)
current.featherCount = readAddress("int", 0x1D6A80, 0x1F54)
end
-- print(current.loading)
end

function update()
Expand Down