incognito async stuff and updated alpha holograms
This commit is contained in:
parent
bdfb55d4e1
commit
422df69335
@ -279,8 +279,7 @@ public class FriendManager extends MiniDbClientPlugin<FriendData>
|
||||
|
||||
if (friend.Status == FriendStatusType.Accepted)
|
||||
{
|
||||
// Online Friend and not incognito
|
||||
if (friend.Online && !IncognitoManager.Instance.getRepository().GetStatus(friend.Name))
|
||||
if (friend.Online)
|
||||
{
|
||||
if (friend.ServerName.contains("Staff") || friend.ServerName.contains("CUST"))
|
||||
{
|
||||
|
@ -129,16 +129,14 @@ public class FriendsGUI implements Listener
|
||||
|
||||
FriendStatus friend = friends.get(friendSlot);
|
||||
|
||||
boolean incognito = friend.Online ? IncognitoManager.Instance.getRepository().GetStatus(friend.Name) : false;
|
||||
|
||||
ItemBuilder builder = new ItemBuilder(Material.SKULL_ITEM, 1, (short) (friend.Online && !incognito ? 3 : 0));
|
||||
ItemBuilder builder = new ItemBuilder(Material.SKULL_ITEM, 1, (short) (friend.Online ? 3 : 0));
|
||||
|
||||
builder.setTitle(C.cWhite + C.Bold + friend.Name);
|
||||
builder.setPlayerHead(friend.Name);
|
||||
|
||||
builder.addLore(C.cGray + C.Bold + "Status: " + (friend.Online ? C.cDGreen + "Online" : C.cRed + "Offline"));
|
||||
|
||||
if (friend.Online && !incognito)
|
||||
if (friend.Online)
|
||||
{
|
||||
builder.addLore(C.cGray + C.Bold + "Server: " + C.cYellow + friend.ServerName);
|
||||
}
|
||||
@ -276,7 +274,7 @@ public class FriendsGUI implements Listener
|
||||
|
||||
FriendStatus friend = friends.get(friendSlot);
|
||||
|
||||
boolean incognito = friend.Online ? IncognitoManager.Instance.getRepository().GetStatus(friend.Name) : false;
|
||||
boolean incognito = friend.Online;
|
||||
|
||||
ItemBuilder builder = new ItemBuilder(Material.SKULL_ITEM, 1, (short) (friend.Online && !incognito ? 3 : 0));
|
||||
|
||||
|
@ -381,9 +381,8 @@ public class ClansManager extends MiniClientPlugin<ClientClan>implements IRelati
|
||||
for (Location location : welcomeHolograms)
|
||||
{
|
||||
Hologram hologram = new Hologram(hologramManager, location,
|
||||
C.cGreenB + "Welcome to Clans Alpha",
|
||||
C.cGreenB + "Welcome to Clans Beta",
|
||||
C.cWhite + "Please be aware there may be bugs",
|
||||
C.cWhite + "Map may reset at any time during Alpha!",
|
||||
C.cWhite + "Type " + C.cYellow + "/clan" + C.cWhite + " to get started!"
|
||||
);
|
||||
hologram.start();
|
||||
|
Loading…
Reference in New Issue
Block a user