don't attempt to grab particles or zones

This commit is contained in:
Seth Alves 2015-11-04 13:59:37 -08:00
parent f4cc8c4c2e
commit 1cbe6c4463

View file

@ -452,6 +452,14 @@ function MyController(hand) {
continue;
}
if (propsForCandidate.type == 'ParticleEffect') {
continue;
}
if (propsForCandidate.type == 'Zone') {
continue;
}
if (propsForCandidate.locked && !grabbableDataForCandidate.wantsTrigger) {
continue;
}