diff --git a/app/lib/world/world.coffee b/app/lib/world/world.coffee index fa075995f..c788079b5 100644 --- a/app/lib/world/world.coffee +++ b/app/lib/world/world.coffee @@ -96,7 +96,7 @@ module.exports = class World for thang in @thangs when thang.isProgrammable userCode = @userCodeMap[thang.id] ? {} for methodName, aether of userCode - framesToLoadFlowBefore = if methodName is 'plan' then 200 else 1 # Adjust if plan() is taking even longer + framesToLoadFlowBefore = if methodName is 'plan' or methodName is 'bid' then 200 else 1 # Adjust if plan() is taking even longer aether._shouldSkipFlow = i < loadUntilFrame - framesToLoadFlowBefore try @getFrame(i)