ID:85484
 
BYOND Version:457
Operating System:Windows XP Pro
Web Browser:Firefox 3.5.5
Status: Deferred

This issue may be low priority or very difficult to fix, and has been put on the back burner for the time being.
Descriptive Problem Summary:
get_dir() doesn't validate that the arguments given to it are actually correct, and in the case that they aren't, it simply always returns SOUTH (2).

Code Snippet (if applicable) to Reproduce Problem:
mob/verb/test()
var/a = pick(world,new /savefile,123,"a")
src << get_dir(a,src)


Expected Results:
A runtime error.

Actual Results:
Returns 2.