diff --git a/src/as/com/threerings/util/Hashtable.as b/src/as/com/threerings/util/Hashtable.as index 2d57c4537..a3a48d628 100644 --- a/src/as/com/threerings/util/Hashtable.as +++ b/src/as/com/threerings/util/Hashtable.as @@ -78,7 +78,7 @@ public class Hashtable var e :Entry = (_entries[index] as Entry); while (true) { if (e == null) { - return null; + return undefined; } if (e.hash == hash && e.key.equals(hkey)) { return e.value;