hq-meldung und gruppennachricht bei login angepasst
This commit is contained in:
@@ -101,7 +101,7 @@ namespace ReallifeGamemode.Server.Events
|
|||||||
|
|
||||||
if (user.Wanteds > 0)
|
if (user.Wanteds > 0)
|
||||||
{
|
{
|
||||||
ChatService.HQMessage("Der Straftäter " + user.Name + " hat sich mit " + user.Wanteds + " Wanteds eingeloggt.");
|
ChatService.HQMessage($"Der Straftäter {user.Name} hat sich mit {user.Wanteds} Wanteds eingeloggt.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -129,8 +129,7 @@ namespace ReallifeGamemode.Server.Events
|
|||||||
|
|
||||||
if (user.Group != null)
|
if (user.Group != null)
|
||||||
{
|
{
|
||||||
string msg = $"{player.Name} ist wieder online.";
|
ChatService.BroadcastGroup($"{player.Name} ist wieder online", user.Group);
|
||||||
ChatService.BroadcastGroup(msg, user.Group);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HanfManager.UpdateHanfForPlayer(player);
|
HanfManager.UpdateHanfForPlayer(player);
|
||||||
|
|||||||
Reference in New Issue
Block a user