- Added config variable to enable/disable checking for banned multiaccounts by ip `CheckMultiAccountsByIp`
- Fixed css_speed after player hurt
- Finally fixed vote kick (callvote)
- Small fix for admins loading from database
This commit is contained in:
Dawid Bepierszcz
2024-11-26 23:37:49 +01:00
parent 2defb2fe14
commit 023e1a031b
12 changed files with 106 additions and 41 deletions

View File

@@ -28,8 +28,8 @@ public class PlayerInfo(
public DiePosition? DiePosition { get; set; }
}
public struct DiePosition(Vector? position = null, QAngle? angle = null)
public struct DiePosition(Vector position, QAngle angle)
{
public Vector? Position { get; set; } = position;
public QAngle? Angle { get; set; } = angle;
public Vector Position { get; set; } = position;
public QAngle Angle { get; set; } = angle;
}