Green Orb Quest

by LordAndrew
Collect orbs of the green variety.
ID:1931197
 
Resolved
Orbs could be repeatedly collected in the very small time frame between the collected animation playing, and the actual deletion of the orb.
BYOND Version:N/A (Website Bug)
Operating System:Windows 10 Pro 64-bit
Web Browser:Chrome 45.0.2454.85
Applies to:Gameplay
Status: Resolved (1.9)

This issue has been resolved.
Upon completing the game, I ended up with 774 orbs of the maximum 769. A new update to the game may have added 5 extra orbs. A workaround for future releases could be to count the orbs on startup (or to increment a counter with orb.New() somewhere).
var/orb_counter = 0

green_orb/New()
..()
orb_counter += 1
That's bizarre. I do in fact count all of the orbs at runtime, so I have no idea how five extra ones could have slipped in. I'll have to take a look into this.
LordAndrew resolved issue with message:
Orbs could be repeatedly collected in the very small time frame between the collected animation playing, and the actual deletion of the orb.