Index: code/parse/lua.cpp
===================================================================
--- code/parse/lua.cpp	(revision 11102)
+++ code/parse/lua.cpp	(working copy)
@@ -16413,8 +16413,7 @@
 				//WMC - Return as appropriate
 				int rval = lua_gettop(L) - vvt_ldx;
 
-				if(rval)
-					return rval;
+				return rval;
 			}
 			else
 			{
@@ -16446,8 +16445,7 @@
 
 			int rval = lua_gettop(L) - err_ldx;
 
-			if(rval)
-				return rval;
+			return rval;
 		}
 		lua_pop(L, 2);	//WMC - Don't need __indexer or error handler
 	}
