From 40fd1674ade47f342564674d8fe0b04a792683f0 Mon Sep 17 00:00:00 2001 From: Michael Schmatz Date: Thu, 19 Jun 2014 17:09:45 -0700 Subject: [PATCH] Temporary fix for bid function in hover debugger --- app/lib/world/world.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)