mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 13:44:32 +02:00
Make users online title say to login to view
This commit is contained in:
parent
4ca0048ec9
commit
c637649805
1 changed files with 2 additions and 2 deletions
|
@ -559,7 +559,7 @@ var usersWindow = (function () {
|
|||
});
|
||||
|
||||
Overlays.editOverlay(windowHeading, {
|
||||
text: linesOfUsers.length > 0 ? "Users online" : "No users online"
|
||||
text: isLoggedIn ? (linesOfUsers.length > 0 ? "Users online" : "No users online") : "Users online - log in to view"
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -1028,7 +1028,7 @@ var usersWindow = (function () {
|
|||
color: WINDOW_HEADING_COLOR,
|
||||
alpha: WINDOW_HEADING_ALPHA,
|
||||
backgroundAlpha: 0.0,
|
||||
text: "No users online",
|
||||
text: "Users online",
|
||||
font: WINDOW_FONT,
|
||||
visible: false
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue