ID:1571884
 
Applies to:Dream Maker
Status: Open

Issue hasn't been assigned a status value.
A common mistake in DM is to use spawn in the same way as sleep, such as:

mob/verb/Test()
world << "Hello, "
sleep (10)
world << "\... world"
spawn (10)
world << "\... !"

In the above example, spawn is empty and the line after it will execute immediately. It'd be nice if Dream Maker would throw a warning (possibly an error?) about empty spawn blocks.