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
+1 -1
View File
@@ -81,7 +81,7 @@ var/list/uplink_items = list()
return 0
// If the uplink's holder is in the user's contents
if ((U.loc in user.contents || (in_range(U.loc, user) && istype(U.loc.loc, /turf))))
if ((U.loc in user.contents) || (in_range(U.loc, user) && istype(U.loc.loc, /turf)))
user.set_machine(U)
if(cost > U.uses)
return 0