- Removed message of checking server ip
- Fixed some commands
- Changed workshopmaps config
- Probably fixed votes (untested)  - let me know if not
- Minimum css version - 246
This commit is contained in:
Dawid Bepierszcz
2024-06-29 11:33:41 +02:00
parent cdd771511b
commit a395a7d9c8
9 changed files with 13 additions and 23 deletions

View File

@@ -69,9 +69,6 @@ namespace CS2_SimpleAdmin
playersToTarget.ForEach(player =>
{
if (!player.IsBot && player.Connected == PlayerConnectedState.PlayerConnected)
return;
if (caller!.CanTarget(player))
{
Freeze(caller, player, time, callerName);
@@ -115,9 +112,6 @@ namespace CS2_SimpleAdmin
playersToTarget.ForEach(player =>
{
if (!player.IsBot && player.Connected == PlayerConnectedState.PlayerConnected)
return;
Unfreeze(caller, player, callerName, command);
});
}