Merge pull request #6312 from sethalves/dont-grab-zones

don't attempt to grab particles or zones
This commit is contained in:
Brad Davis 2015-11-04 16:03:05 -08:00
commit 067a058799

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;
}