Fixed 'in' precedence errors.

This commit is contained in:
Melichior
2015-12-29 17:16:09 -07:00
parent c0c36df209
commit 53db2cbcd1
5 changed files with 5 additions and 5 deletions

View File

@@ -221,7 +221,7 @@ mob/verb/test()
hclient = getClient(hclient, TRUE)
if (istype(hclient))
if (type in asset_list && islist(asset_list[type]))
if ((type in asset_list) && islist(asset_list[type]))
send_asset_list(hclient.client, asset_list[type], TRUE)
if (!winexists(hclient.client, "browser_\ref[src]"))