ID:157153
![]() May 4 2010, 7:56 am
|
|
I was wondering, since I've seen this used in BYOND coding a couple of times at least, I was wondering what exactly this does in BYOND.
|
Copyright © 2025 BYOND Software.
All rights reserved.
Note that in most cases, you actually want the line .=..(), which will also store the return value of the procedure in the variable . which is the default return value. In the case of Move(), for example, it returns 1 on success and 0 on failure, and if you simply call ..() and don't return anything yourself, it will no longer do this and can cause problems.