mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 19:21:16 +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);
|
Overlays.deleteOverlay(this.overlay);
|
||||||
};
|
};
|
||||||
this.shouldShow = function() {
|
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() {
|
this.update = function() {
|
||||||
avatar = AvatarList.getAvatar(avatarSessionUUID);
|
avatar = AvatarList.getAvatar(avatarSessionUUID);
|
||||||
|
|
Loading…
Reference in a new issue