You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like queueing injects causes the previous inject to be unregistered.
sc2parse/plugins.py:1153 (ZergMacroTracker)
if target_hatch_id not in owner.hatches:
target_hatch.injects = [event.frame]
owner.hatches[target_hatch_id] = target_hatch
else:
# If not enough time has passed, the last one didn't happen
if event.frame - target_hatch.injects[-1] < INJECT_TIME:
print "Previous inject on {0} at {1} failed".format(target_hatch, target_hatch.injects[-1])
target_hatch.injects[-1] = event.frame
else:
target_hatch.injects.append(event.frame)
The text was updated successfully, but these errors were encountered:
Looks like queueing injects causes the previous inject to be unregistered.
sc2parse/plugins.py:1153 (ZergMacroTracker)
The text was updated successfully, but these errors were encountered: