ID:93714
 
Not a bug
BYOND Version:464
Operating System:Windows 7 Home Premium 64-bit
Web Browser:Firefox 3.5.8
Applies to:Dream Seeker
Status: Not a bug

This is not a bug. It may be an incorrect use of syntax or a limitation in the software. For further discussion on the matter, please consult the BYOND forums.
Descriptive Problem Summary:
When running the below code it causes dream seeker to run invisibly.
Numbered Steps to Reproduce Problem:

Code Snippet (if applicable) to Reproduce Problem:
mob
var/list/commands = new()
Login()
..()
var/A = new/obj/clickable/command
commands.Add(A)

updategrid()

proc/updategrid()
for(var/X = 1, X >= commands.len,X++)
src << output(X,"grid1:[X]")


Expected Results:
To display the number I belive
Actual Results:
Runs dreamseeker invisibly
Does the problem occur:
Every time? Or how often? Every Time
In other games?ukn
In other user accounts?ukn
On other computers?ukn

When does the problem NOT occur?

Did the problem NOT occur in any earlier versions? If so, what was the last version that worked? (Visit http://www.byond.com/download/build to download old versions for testing.)

Workarounds:
Called the list it was indexing.
You're running into an infinite loop because your loop code is broken.

Problems you experience in development should always be vetted on the developer forums before posting a bug, because 99% of the time it's the code.