REPENTOGON
REPENTOGON copied to clipboard
EntitySlot:GetTimeout() and :SetTimeout() interact with DonationValue
-
EntitySlot:GetTimeout()returns timeout with added value of(1<<16) * EntitySlot:GetDonationValue() -
EntitySlot:SetTimeout()affectsDonationValuein a similar way- Lua workarounds are:
local timeout = slot:GetTimeout() % 65536slot:SetTimeout(timeout + 65536 * slot:GetDonationValue())
- Lua workarounds are: