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
Hi there, I believe there is either a typo on page 320 regarding the honey field, where it should be the nectar field: "The CollectNectar method is called by the NectarCollector bee each shift. It takes a parameter, amount. If amount is greater than zero, it adds it to the honey field."
Example Code found here and in the solution on page 322 uses the nectar field public static void CollectNectar(float amount) { if (amount > 0f) { nectar += amount; } }
The text was updated successfully, but these errors were encountered:
Hi there, I believe there is either a typo on page 320 regarding the honey field, where it should be the nectar field:
"The CollectNectar method is called by the NectarCollector bee each shift. It takes a parameter, amount. If amount is greater than zero, it adds it to the honey field."
Example Code found here and in the solution on page 322 uses the nectar field
public static void CollectNectar(float amount) { if (amount > 0f) { nectar += amount; } }
The text was updated successfully, but these errors were encountered: