mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 05:52:38 +02:00
Remove redundant parentheses
This commit is contained in:
parent
4d467deb5e
commit
3ec06b1a6e
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ AvatarFinderBeacon = function(avatar) {
|
|||
Overlays.deleteOverlay(this.overlay);
|
||||
};
|
||||
this.shouldShow = function() {
|
||||
return (Vec3.distance(MyAvatar.position, avatar.position) >= MIN_DISPLAY_DISTANCE);
|
||||
return Vec3.distance(MyAvatar.position, avatar.position) >= MIN_DISPLAY_DISTANCE;
|
||||
};
|
||||
this.update = function() {
|
||||
avatar = AvatarList.getAvatar(avatarSessionUUID);
|
||||
|
|
Loading…
Reference in a new issue