fixed clan energy warnings being sent to all players on the server instead of the clan.
This commit is contained in:
parent
6da628abe1
commit
185f19fb6a
@ -75,7 +75,7 @@ public class ClanEnergyTracker extends MiniPlugin
|
||||
{
|
||||
for (Player player : clan.getOnlinePlayers())
|
||||
{
|
||||
UtilTextMiddle.display(C.cYellow + "Energy", "Clan Energy is running low");
|
||||
UtilTextMiddle.display(C.cYellow + "Energy", "Clan Energy is running low", player);
|
||||
UtilPlayer.message(player, F.main("Energy", "To top up your Clan's Energy, head to the shop and go to the Energy Shop!"));
|
||||
}
|
||||
}
|
||||
@ -94,7 +94,7 @@ public class ClanEnergyTracker extends MiniPlugin
|
||||
{
|
||||
for (Player player : clan.getOnlinePlayers())
|
||||
{
|
||||
UtilTextMiddle.display(C.cYellow + "Energy", "Clan Energy is running low");
|
||||
UtilTextMiddle.display(C.cYellow + "Energy", "Clan Energy is running low", player);
|
||||
UtilPlayer.message(player, F.main("Energy", "To top up your Clan's Energy, head to the shop and go to the Energy Shop!"));
|
||||
}
|
||||
}
|
||||
@ -133,6 +133,8 @@ public class ClanEnergyTracker extends MiniPlugin
|
||||
return clan.isOnlineNow();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user