Revert the role name filter change as it has already been added to the repo

This commit is contained in:
rick@ghostpunch.com 2017-07-20 17:01:02 -04:00
parent 2b9da2bcba
commit 451b7ec1de

View file

@ -122,7 +122,7 @@
this.rolesToOverride = function() {
return MyAvatar.getAnimationRoles().filter(function(role) {
return !(role === "right" || role.startsWith("left"));
return role === "fly" || role.startsWith("inAir");
});
}