Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
fix: remove mention of easy.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dollannn committed Apr 6, 2024
1 parent d2c8688 commit e835a26
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions CS2Multi1v1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ public HookResult OnPlayerActivate(EventPlayerActivate @event, GameEventInfo inf
_logger.LogInformation($"Player {arenaPlayer.PlayerController.PlayerName} added to waiting queue.");
arenaPlayer.PrintToChat($"{ChatColors.Gold}You have been added to the waiting queue.");
arenaPlayer.PrintToChat($"{ChatColors.Gold}Type {ChatColors.LightRed}!help{ChatColors.Gold} in chat to see info.");
arenaPlayer.PrintToChat($"Please message {ChatColors.LightRed}@easy.rs{ChatColors.Gold} on Discord with any feedback.");

return HookResult.Continue;
}
Expand Down Expand Up @@ -259,7 +258,6 @@ public void OnHelp(CCSPlayerController player, CommandInfo commandInfo)
PrintToChatCustom(player, "--- Round types are random.");
PrintToChatCustom(player, "--- Challenging players is not supported yet.");
PrintToChatCustom(player, "--- Selecting guns is not supported yet.");
PrintToChatCustom(player, $"--- Please message {ChatColors.LightRed}@easy.rs{ChatColors.Default} on Discord with any feedback or bugs.");
}

// Show current players in waiting queue
Expand Down
2 changes: 1 addition & 1 deletion Models/Arena.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void AddPlayers(ArenaPlayer? player1, ArenaPlayer? player2, int rank = -1
_player2?.PrintToChat($"Round Type: {ChatColors.Gold}{_roundType.Name}");
_player2?.PrintToChat($"Opponent: {ChatColors.Gold}{opponentName}");

_player2!.PlayerController.Clan = $"ARENA {_rank}";
_player2!.PlayerController.Clan = $"Arena {_rank} |";
}

LogCurrentInfo();
Expand Down

0 comments on commit e835a26

Please sign in to comment.